Changeset 1610 for trunk/system/views/kohana_calendar.php
- Timestamp:
- 12/24/2007 12:50:07 AM (13 months ago)
- Files:
-
- 1 modified
-
trunk/system/views/kohana_calendar.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/views/kohana_calendar.php
r1609 r1610 26 26 <tr> 27 27 <?php foreach ($week as $day): ?> 28 <td<?php if ($day[1] == FALSE): ?> class="prev-next"<?php endif ?>><?php echo $day[0] ?></td> 28 <?php if ($day[1] === FALSE): ?> 29 <td class="prev-next"><?php echo $day[0] ?></td> 30 <?php else: ?> 31 <?php 32 /** 33 * @todo Need to add assignable stuff to this. For example, making certain dates into links. 34 */ 35 ?> 36 <td><?php echo $day[0] ?></td> 37 <?php endif; ?> 29 38 <?php endforeach ?> 30 39 </tr>
