aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/page_tail.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/phpBB/includes/page_tail.php b/phpBB/includes/page_tail.php
index 7913a1c697..adf403bd6b 100644
--- a/phpBB/includes/page_tail.php
+++ b/phpBB/includes/page_tail.php
@@ -42,12 +42,6 @@ $template->assign_vars(array(
$template->pparse("overall_footer");
//
-// Close our DB connection.
-//
-$db->sql_close();
-
-
-//
// Output page creation time
//
$mtime = microtime();
@@ -56,7 +50,12 @@ $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);
+printf("<center><font size=-2>phpBB Created this page in %f seconds : " . $db->num_queries . " queries executed</font></center>", $totaltime);
+
+//
+// Close our DB connection.
+//
+$db->sql_close();
//
// Compress buffered output if required