From: <cl...@us...> - 2003-09-20 21:46:21
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv23713/includes Modified Files: footer.inc.php header.inc.php Log Message: Moved all closing html and body tags into the footer. Updated README. Index: footer.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/footer.inc.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** footer.inc.php 19 Sep 2003 21:21:20 -0000 1.8 --- footer.inc.php 20 Sep 2003 21:46:17 -0000 1.9 *************** *** 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.4</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; --- 1,5 ---- <?php ! echo "<center class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 0.9.4</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; *************** *** 10,14 **** } } ! echo '</font></center>'; ?> --- 10,17 ---- } } ! echo '</center>'; ?> + + </body> + </html> Index: header.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/header.inc.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** header.inc.php 17 Sep 2003 05:18:24 -0000 1.3 --- header.inc.php 20 Sep 2003 21:46:17 -0000 1.4 *************** *** 1,3 **** ! <? if ($current_view == 'preferences') $display_date = $preferences_lang; ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" --- 1,8 ---- ! <? ! ! if ($current_view == 'preferences') $display_date = $preferences_lang; ! if ($current_view == 'search') $display_date = $results_lang; ! ! ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |