aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-03-20 02:23:46 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-03-20 02:23:46 +0000
commit08f384157a494098a4de45fe576a3b47d9b9df1a (patch)
treecd21424b83858faffba454e78c489438172e776a
parent53449e4b9f91713641666c390ebef3cf6461cb78 (diff)
downloadforums-08f384157a494098a4de45fe576a3b47d9b9df1a.tar
forums-08f384157a494098a4de45fe576a3b47d9b9df1a.tar.gz
forums-08f384157a494098a4de45fe576a3b47d9b9df1a.tar.bz2
forums-08f384157a494098a4de45fe576a3b47d9b9df1a.tar.xz
forums-08f384157a494098a4de45fe576a3b47d9b9df1a.zip
No longer "MySQL" specific explain
git-svn-id: file:///svn/phpbb/trunk@3690 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/includes/page_tail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/page_tail.php b/phpBB/includes/page_tail.php
index 8545ca24b9..2d7b15a8bf 100644
--- a/phpBB/includes/page_tail.php
+++ b/phpBB/includes/page_tail.php
@@ -37,7 +37,7 @@ if (defined('DEBUG'))
if (!empty($_REQUEST['explain']) && $auth->acl_get('a_'))
{
echo $db->sql_report;
- echo "<pre><b>Page generated in $totaltime seconds with " . $db->num_queries . " queries,\nspending " . $db->sql_time . ' doing MySQL queries and ' . ($totaltime - $db->sql_time) . ' doing PHP things.</b></pre>';
+ echo "<pre><b>Page generated in $totaltime seconds with " . $db->num_queries . " queries,\nspending " . $db->sql_time . ' doing SQL queries and ' . ($totaltime - $db->sql_time) . ' doing PHP things.</b></pre>';
exit;
}