From: <cl...@us...> - 2003-08-13 06:35:57
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv30830/includes Modified Files: footer.inc.php sidebar.php Log Message: Cleanup Index: footer.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/footer.inc.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** footer.inc.php 29 May 2003 18:28:01 -0000 1.6 --- footer.inc.php 13 Aug 2003 06:04:37 -0000 1.7 *************** *** 1,5 **** <?php ! echo "<center><font class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 0.9.2</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; --- 1,5 ---- <?php ! echo "<center><font class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 0.9.3</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; Index: sidebar.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/sidebar.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** sidebar.php 30 Jun 2003 22:37:52 -0000 1.10 --- sidebar.php 13 Aug 2003 06:04:38 -0000 1.11 *************** *** 75,104 **** <table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" width="100%"> <tr> ! <td colspan="7"><img src="images/spacer.gif" width="21" height="6" alt=" "></td> ! </tr> ! <tr> ! <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> ! <td colspan="6"><?php include('./functions/list_icals.php'); ?></td> ! </tr> ! <tr> ! <td colspan="7"><img src="images/spacer.gif" width="21" height="5" alt=" "></td> ! </tr> ! <tr> ! <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> ! <td colspan="6"><?php include('./functions/list_years.php'); ?></td> ! </tr> ! <tr> ! <td colspan="7"><img src="images/spacer.gif" width="21" height="5" alt=" "></td> ! </tr> ! <tr> ! <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> ! <td colspan="6"><?php include('./functions/list_months.php'); ?></td> ! </tr> ! <tr> ! <td colspan="7"><img src="images/spacer.gif" width="21" height="5" alt=" "></td> </tr> <tr> ! <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> ! <td colspan="6"><?php include('./functions/list_weeks.php'); ?></td> </tr> <?php --- 75,90 ---- <table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" width="100%"> <tr> ! <td colspan="2"><img src="images/spacer.gif" width="21" height="6" alt=" "></td> </tr> <tr> ! <td width="4"></td> ! <td> ! <?php ! include('./functions/list_icals.php'); ! include('./functions/list_years.php'); ! include('./functions/list_months.php'); ! include('./functions/list_weeks.php'); ! ?> ! </td> </tr> <?php *************** *** 106,111 **** ?> <tr> ! <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> ! <td colspan="6" class="G10B"> <form action="day.php" method="GET"> <input type="hidden" name="cal" value="<?php print urlencode($cal); ?>"> --- 92,97 ---- ?> <tr> ! <td width="4"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> ! <td class="G10B"> <form action="day.php" method="GET"> <input type="hidden" name="cal" value="<?php print urlencode($cal); ?>"> *************** *** 119,127 **** if ($show_search == 'yes') { ?> <tr> ! <td colspan="7"><img src="images/spacer.gif" width="21" height="3" alt=" "></td> </tr> <tr> ! <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> ! <td colspan="6" valign="middle" align="left"><?php echo "$search_box"; ?></td> </tr> <?php } ?> --- 105,113 ---- if ($show_search == 'yes') { ?> <tr> ! <td colspan="2"><img src="images/spacer.gif" width="21" height="3" alt=" "></td> </tr> <tr> ! <td width="4"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> ! <td valign="middle" align="left"><?php echo "$search_box"; ?></td> </tr> <?php } ?> *************** *** 226,230 **** $vtodo_text = stripslashes(urldecode($val["vtodo_text"])); if ($vtodo_text != "") { ! $description = $val["description"]; $completed_date = $val['completed_date']; $status = $val["status"]; --- 212,216 ---- $vtodo_text = stripslashes(urldecode($val["vtodo_text"])); if ($vtodo_text != "") { ! if (isset($val["description"])) $description = $val["description"]; $completed_date = $val['completed_date']; $status = $val["status"]; |