Changeset 2519 for modules/branches/2.2/timeconditions
- Timestamp:
- 09/17/06 00:20:17 (7 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.2/timeconditions/page.timeconditions.php
r2478 r2519 142 142 <?php 143 143 // ----- Load Time Pattern Variables ----- 144 list($time_hour, $time_wday, $time_mday, $time_month) = explode( '|', $thisItem['time'] ); 144 if (isset($thisItem)) { 145 list($time_hour, $time_wday, $time_mday, $time_month) = explode( '|', $thisItem['time'] ); 146 } else { 147 list($time_hour, $time_wday, $time_mday, $time_month) = Array(null,null,null,null); 148 } 149 145 150 ?> 146 151 <tr>
