Update of /cvsroot/phpweather/web/include
In directory usw-pr-cvs1:/tmp/cvs-serv15189/include
Modified Files:
footer.php header.php
Log Message:
XHTML time, guys. Close those tags... :)
Index: footer.php
===================================================================
RCS file: /cvsroot/phpweather/web/include/footer.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- footer.php 26 Mar 2002 22:09:12 -0000 1.5
+++ footer.php 27 Mar 2002 14:39:21 -0000 1.6
@@ -1,12 +1,12 @@
-<hr>
+<hr />
<a href="http://sourceforge.net/projects/phpweather/"><img
src="http://phpweather.sourceforge.net/phpweather-white.gif"
-border="0" alt="PHP Weather Logo" align="left"></a>
+border="0" alt="PHP Weather Logo" align="left" /></a>
<a href="http://sourceforge.net/"><img
src="http://sourceforge.net/sflogo.php?group_id=23245" width="88"
-height="31" border="0" alt="SourceForge Logo" align="right"></a>
+height="31" border="0" alt="SourceForge Logo" align="right" /></a>
<p>This page was last modified on <? echo date('F jS, Y', getlastmod()) ?>.</p>
Index: header.php
===================================================================
RCS file: /cvsroot/phpweather/web/include/header.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- header.php 26 Mar 2002 22:21:37 -0000 1.7
+++ header.php 27 Mar 2002 14:39:21 -0000 1.8
@@ -17,19 +17,21 @@
include(dirname(__FILE__) . '/navigation.php');
?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>PHP Weather: <?php echo $pages[$PHP_SELF]['title'] ?></title>
- <link rel="stylesheet" type="text/css" href="<?php echo ROOT ?>/style.css">
+ <link rel="stylesheet" type="text/css" href="<?php echo ROOT ?>/style.css" />
<!-- <link rel="shortcut icon" href="/favicon.ico"> -->
</head>
<body>
-
+<a href="phpweather.sourceforge.net"><img src="http://phpweather.sourceforge.net/phpweather-long-white.gif" border="0" align="left" alt="PHP Weather Home Page" /></a>
<?php /* Make the links. */
print_parents(substr($PHP_SELF, strlen(ROOT)));
print_siblings(substr($PHP_SELF, strlen(ROOT)));
-echo "<hr>\n";
+echo "<br /><hr />\n";
print_greeting(substr($PHP_SELF, strlen(ROOT)));
?>
|