mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
HTML 4.01 and XHTML 1.0 compliance changes
git-svn-id: file:///svn/phpbb/trunk@768 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
b3366f1e35
commit
44fa3624a7
2 changed files with 11 additions and 7 deletions
|
@ -27,7 +27,11 @@
|
||||||
//
|
//
|
||||||
if($userdata['user_level'] == ADMIN)
|
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();
|
$current_time = time();
|
||||||
|
|
||||||
|
@ -36,8 +40,8 @@ $template->set_filenames(array(
|
||||||
);
|
);
|
||||||
|
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
"PHPBB_VERSION" => "2.0-alpha",
|
"PHPBB_VERSION" => "2.0a",
|
||||||
"ADMIN_LINK" => $admin_link . "<br />"));
|
"ADMIN_LINK" => $admin_link));
|
||||||
|
|
||||||
$template->pparse("overall_footer");
|
$template->pparse("overall_footer");
|
||||||
|
|
||||||
|
@ -53,7 +57,7 @@ $totaltime = ($endtime - $starttime);
|
||||||
$gzip_text = ($board_config['gzip_compress']) ? "GZIP compression enabled" : "GZIP compression disabled";
|
$gzip_text = ($board_config['gzip_compress']) ? "GZIP compression enabled" : "GZIP compression disabled";
|
||||||
$debug_mode = (DEBUG) ? " : Debug Mode" : "";
|
$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.
|
// Close our DB connection.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<br clear="all" />
|
<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
|
Please note that the following copyright notice
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
The phpBB Group : 2001
|
The phpBB Group : 2001
|
||||||
|
|
||||||
// -->
|
// -->
|
||||||
<span class="gensmall">Powered by phpBB 2.0a © 2001 <a href="http://www.phpbb.com/" target="_phpbb">phpBB Group</a></span></div>
|
Powered by phpBB {PHPBB_VERSION} © 2001 <a href="http://www.phpbb.com/" target="_phpbb">phpBB Group</a></span></div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Add table
Reference in a new issue