From: <cl...@us...> - 2003-09-21 04:28:39
|
Update of /cvsroot/phpicalendar/phpicalendar/rss In directory sc8-pr-cvs1:/tmp/cvs-serv17168/rss Modified Files: index.php Log Message: Header / Footer added. Index: index.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/rss/index.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** index.php 15 Sep 2003 01:00:44 -0000 1.19 --- index.php 21 Sep 2003 04:28:35 -0000 1.20 *************** *** 2,6 **** define('BASE','../'); - $current_view = "rssindex"; include(BASE.'functions/ical_parser.php'); $default_path = 'http://'.$HTTP_SERVER_VARS['SERVER_NAME'].substr($HTTP_SERVER_VARS['PHP_SELF'],0,strpos($HTTP_SERVER_VARS['PHP_SELF'], '/rss/')); --- 2,5 ---- *************** *** 10,25 **** $back_page = BASE.$default_view.'.php?cal='.$cal.'&getdate='.$getdate; } ! ! ?> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ! "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd"> ! <html> ! <head> ! <meta http-equiv="content-type" content="text/html;charset=UTF-8"> ! <title><?php echo "$cal $calendar_lang - RSS Info"; ?></title> ! <link rel="stylesheet" type="text/css" href="<?php echo BASE."styles/$style_sheet/default.css"; ?>"> ! </head> ! <body bgcolor="#FFFFFF"> ! <?php include (BASE.'includes/header.inc.php'); ?> <center> <table border="0" width="700" cellspacing="0" cellpadding="0"> --- 9,15 ---- $back_page = BASE.$default_view.'.php?cal='.$cal.'&getdate='.$getdate; } ! $current_view = "rssindex"; ! $display_date = "$calendar_lang - RSS Info"; ! include (BASE.'includes/header.inc.php'); ?> <center> <table border="0" width="700" cellspacing="0" cellpadding="0"> *************** *** 106,111 **** </tr> </table> - <?php include (BASE.'includes/footer.inc.php'); ?> </center> ! </body> ! </html> --- 96,99 ---- </tr> </table> </center> ! <?php include (BASE.'includes/footer.inc.php'); ?> |