aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-31 14:17:41 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-31 14:17:41 +0000
commit44fa3624a75dae0963739c7c812c517b1bf56d0a (patch)
tree8767f9813731840d05b4b704198765072a197e63 /phpBB
parentb3366f1e3518c5b46b379178eac191e3a3974dfa (diff)
downloadforums-44fa3624a75dae0963739c7c812c517b1bf56d0a.tar
forums-44fa3624a75dae0963739c7c812c517b1bf56d0a.tar.gz
forums-44fa3624a75dae0963739c7c812c517b1bf56d0a.tar.bz2
forums-44fa3624a75dae0963739c7c812c517b1bf56d0a.tar.xz
forums-44fa3624a75dae0963739c7c812c517b1bf56d0a.zip
HTML 4.01 and XHTML 1.0 compliance changes
git-svn-id: file:///svn/phpbb/trunk@768 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/page_tail.php12
-rw-r--r--phpBB/templates/PSO/overall_footer.tpl6
2 files changed, 11 insertions, 7 deletions
diff --git a/phpBB/includes/page_tail.php b/phpBB/includes/page_tail.php
index c092f00fe5..80cb7e3bfd 100644
--- a/phpBB/includes/page_tail.php
+++ b/phpBB/includes/page_tail.php
@@ -27,7 +27,11 @@
//
if($userdata['user_level'] == ADMIN)
{
- $admin_link = "<a href=\"" . append_sid("admin/index.$phpEx") . "\">" . $lang['Admin_panel'] . "</a>";
+ $admin_link = "<a href=\"" . append_sid("admin/index.$phpEx") . "\">" . $lang['Admin_panel'] . "</a><br /><br />";
+}
+else
+{
+ $admin_link = "";
}
$current_time = time();
@@ -36,8 +40,8 @@ $template->set_filenames(array(
);
$template->assign_vars(array(
- "PHPBB_VERSION" => "2.0-alpha",
- "ADMIN_LINK" => $admin_link . "<br />"));
+ "PHPBB_VERSION" => "2.0a",
+ "ADMIN_LINK" => $admin_link));
$template->pparse("overall_footer");
@@ -53,7 +57,7 @@ $totaltime = ($endtime - $starttime);
$gzip_text = ($board_config['gzip_compress']) ? "GZIP compression enabled" : "GZIP compression disabled";
$debug_mode = (DEBUG) ? " : Debug Mode" : "";
-printf("<center><font size=-2>phpBB Created this page in %f seconds : " . $db->num_queries . " queries executed : $gzip_text".$debug_mode."</font></center>", $totaltime);
+printf("<br /><center><font size=\"-2\">phpBB Created this page in %f seconds : " . $db->num_queries . " queries executed : $gzip_text".$debug_mode."</font></center>", $totaltime);
//
// Close our DB connection.
diff --git a/phpBB/templates/PSO/overall_footer.tpl b/phpBB/templates/PSO/overall_footer.tpl
index 35702d9af0..cf56c83bfb 100644
--- a/phpBB/templates/PSO/overall_footer.tpl
+++ b/phpBB/templates/PSO/overall_footer.tpl
@@ -1,7 +1,7 @@
<br clear="all" />
-<div align="center"><span class="gensmall">{ADMIN_LINK}</span><br />
+<div align="center"><span class="gensmall">{ADMIN_LINK}
<!--
Please note that the following copyright notice
@@ -17,8 +17,8 @@
The phpBB Group : 2001
-//-->
-<span class="gensmall">Powered by phpBB 2.0a &copy; 2001 <a href="http://www.phpbb.com/" target="_phpbb">phpBB Group</a></span></div>
+// -->
+Powered by phpBB {PHPBB_VERSION} &copy; 2001 <a href="http://www.phpbb.com/" target="_phpbb">phpBB Group</a></span></div>
</body>
</html> \ No newline at end of file