diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-20 02:23:46 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-20 02:23:46 +0000 |
commit | 08f384157a494098a4de45fe576a3b47d9b9df1a (patch) | |
tree | cd21424b83858faffba454e78c489438172e776a | |
parent | 53449e4b9f91713641666c390ebef3cf6461cb78 (diff) | |
download | forums-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.php | 2 |
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; } |