diff --git a/oncampus.shtml b/oncampus.shtml
index caa41adc8be21610702c879567b03c98958cc0ab..e64f47ffe07a303696a7809582611690b145e929 100644
--- a/oncampus.shtml
+++ b/oncampus.shtml
@@ -1,2 +1,2 @@
-wdnCampusCallback("<!--#if expr="$UNL_CAMPUS = 'on'" -->YES<!--#else -->NO<!--#endif -->");
+wdnCampusCallback("<!--#if expr="v('UNL_CAMPUS') = 'on'" -->YES<!--#else -->NO<!--#endif -->");
 
diff --git a/sharedcode/alert_new.shtml b/sharedcode/alert_new.shtml
index 511bf6fd696d35365aac755d2d88b24d95fef92a..8ac616db3133ed0722b0cb7018c6cd71d18b5536 100644
--- a/sharedcode/alert_new.shtml
+++ b/sharedcode/alert_new.shtml
@@ -1,5 +1,5 @@
 <!--#config timefmt="%Y%m%d%H" -->
-<!--#if expr="$DATE_LOCAL < 2008020600" -->
+<!--#if expr="v('DATE_LOCAL') < 2008020600" -->
 
 <!--you can use the preceding conditional to cease displaying the content at a given date and time; the opening line generates a ten-digit string as YYYYMMDDHH, where the hour is two-digit military time. From there, it's a simple matter of creating a static string in the same format for when you'd like the code to be hidden. Note the closing else and endifs at the bottom of this document.-->
 
diff --git a/sharedcode/alert_test.shtml b/sharedcode/alert_test.shtml
index 94f4df91e128a25043e7566bb6d7cca129d055cd..3e19c9de3b4f1584a0b61dec0e6d2f2faed72a99 100644
--- a/sharedcode/alert_test.shtml
+++ b/sharedcode/alert_test.shtml
@@ -1,5 +1,5 @@
 <!--#config timefmt="%Y%m%d%H%M" -->
-<!--#if expr="(${DATE_LOCAL} >= 201302202200) && (${DATE_LOCAL} < 201302211000)" -->
+<!--#if expr="(v('DATE_LOCAL') >= 201302202200) && (v('DATE_LOCAL') < 201302211000)" -->
 <div style="border:2px solid #AF0909; border-radius: 5px; padding: 12px 9px 4px 9px;margin-bottom:9px;">
   	<span style="font-size: 10px;">INCLEMENT WEATHER ALERT ISSUED 4:30AM, FEB. 21, 2013</span><br />
   	<h3 style="color:#C60302;"><strong>UNL is Open Today</strong></h5>
@@ -7,4 +7,4 @@
 	<p>Although the University is open during periods of adverse conditions, supervisors and department chairs may alter work schedules to make allowances for unique travel problems. This means employees must still account for their normal workday by working or taking vacation leave.</p>
 	<span style="font-size: 10px;"><a href="http://bf.unl.edu/policies/winter-weather-policy-and-procedures">WINTER WEATHER POLICY AND PROCEDURES</a></span>
 </div>
-<!--#endif -->
\ No newline at end of file
+<!--#endif -->