Changeset 205 for trunk/phpbms/modules/base/include/snapshot_include.php
- Timestamp:
- 03/26/07 16:50:25 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/base/include/snapshot_include.php
r204 r205 120 120 <input type="hidden" id="TSprivate<?php echo $therecord["id"]?>" value="<?php echo $therecord["private"]?>"/> 121 121 <input type="hidden" id="TSispastdue<?php echo $therecord["id"]?>" value="<?php echo $therecord["ispastdue"]?>"/> 122 <input class="radiochecks" id="TSC<?php echo $therecord["id"]?>" name="TSC<?php echo $therecord["id"]?>" type="checkbox" value="1" <?php if($therecord["completed"]) echo "checked "?> onClick="checkTask(<?php echo $therecord["id"]?>,'<?php echo $therecord["type"]?>')" align="middle"/>122 <input class="radiochecks" id="TSC<?php echo $therecord["id"]?>" name="TSC<?php echo $therecord["id"]?>" type="checkbox" value="1" <?php if($therecord["completed"]) echo "checked=\"checked\""?> onclick="checkTask(<?php echo $therecord["id"]?>,'<?php echo $therecord["type"]?>')" align="middle"/> 123 123 <a href="<?php echo getAddEditFile(12)."?id=".$therecord["id"]?>&backurl=snapshot.php"><?php echo htmlQuotes($therecord["subject"])?></a> 124 124 <?php if($type=="Tasks") if($therecord["enddate"]) {?><em class="small">(<?php echo htmlQuotes(formatFromSQLDate($therecord["enddate"])) ?>)</em><?php } ?> … … 140 140 ?><table border="0" cellspacing="0" cellpadding="0" width="100%"><?php 141 141 for($i=0;$i<7;$i++){ 142 ?><tr><td colspan= 2class="eventDayName"><?php echo $today.strftime("%A",$theday); if($today){echo ")"; $today="";}?></td></tr><?php142 ?><tr><td colspan="2" class="eventDayName"><?php echo $today.strftime("%A",$theday); if($today){echo ")"; $today="";}?></td></tr><?php 143 143 $donext=true; 144 144 … … 154 154 } 155 155 ?><tr> 156 <td class="small event" nowrap valign="top"><?php echo $times?></td>156 <td class="small event" nowrap="nowrap" valign="top"><?php echo $times?></td> 157 157 <td class="small event" valign="top" width="100%"><a href="<?php echo getAddEditFile(12)."?id=".$therecord["id"]?>&backurl=snapshot.php"><?php echo htmlQuotes($therecord["subject"])?></a></td> 158 158 </tr><?php 159 159 } 160 160 } else { 161 ?><tr><td colspan= 2class="small event disabledtext">no events</td></tr><?php161 ?><tr><td colspan="2" class="small event disabledtext">no events</td></tr><?php 162 162 } 163 163