aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/page_tail.php
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2001-02-23 01:31:43 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2001-02-23 01:31:43 +0000
commit693d62c521921c5b4809f940ed3fbb6ac1aeab86 (patch)
tree422aa64e7eac2c7c6d6a07ca3e22aea2a96204b5 /phpBB/page_tail.php
parent3fcfc52b9357634c074f68b5488bca2a72deff75 (diff)
downloadforums-693d62c521921c5b4809f940ed3fbb6ac1aeab86.tar
forums-693d62c521921c5b4809f940ed3fbb6ac1aeab86.tar.gz
forums-693d62c521921c5b4809f940ed3fbb6ac1aeab86.tar.bz2
forums-693d62c521921c5b4809f940ed3fbb6ac1aeab86.tar.xz
forums-693d62c521921c5b4809f940ed3fbb6ac1aeab86.zip
*** empty log message ***
git-svn-id: file:///svn/phpbb/trunk@23 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/page_tail.php')
-rw-r--r--phpBB/page_tail.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/page_tail.php b/phpBB/page_tail.php
index 2c9cfeb221..1e9155cb9c 100644
--- a/phpBB/page_tail.php
+++ b/phpBB/page_tail.php
@@ -40,5 +40,14 @@ $template->set_var(array("PHPBB_VERSION" => "2.0-alpha",
$template->pparse("output", "overall_footer");
// Close our DB connection.
-$db->close();
+$db->sql_close();
+
+$mtime = microtime();
+$mtime = explode(" ",$mtime);
+$mtime = $mtime[1] + $mtime[0];
+$endtime = $mtime;
+$totaltime = ($endtime - $starttime);
+
+printf("<center><font size=-2>phpBB Created this page in %f seconds.</font></center>", $totaltime);
+
?>