aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/page_tail.php
diff options
context:
space:
mode:
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);
+
?>