aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-04-04 11:53:50 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-04-04 11:53:50 +0000
commita676b8fdf87c083c2a4a00f135d115a43eb560d7 (patch)
treeeae831444f8644391db236025fcd0c6dfd11f586 /phpBB/includes
parent6200b07830a51e607c618ed8c568b2fd85dc1900 (diff)
downloadforums-a676b8fdf87c083c2a4a00f135d115a43eb560d7.tar
forums-a676b8fdf87c083c2a4a00f135d115a43eb560d7.tar.gz
forums-a676b8fdf87c083c2a4a00f135d115a43eb560d7.tar.bz2
forums-a676b8fdf87c083c2a4a00f135d115a43eb560d7.tar.xz
forums-a676b8fdf87c083c2a4a00f135d115a43eb560d7.zip
Switch off DEBUG mode ... will have to ask users to enable this in some cases during bug reporting but this will prevent piles of SQL being output in a few unecessary places
git-svn-id: file:///svn/phpbb/trunk@2482 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/constants.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 2034edc91e..38dfae8654 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -26,8 +26,8 @@ if ( !defined('IN_PHPBB') )
}
// Debug Level
-define('DEBUG', 1); // Debugging on
-//define('DEBUG', 0); // Debugging off
+//define('DEBUG', 1); // Debugging on
+define('DEBUG', 0); // Debugging off
// User Levels <- Do not change the values of USER or ADMIN
@@ -178,4 +178,4 @@ define('VOTE_DESC_TABLE', $table_prefix.'vote_desc');
define('VOTE_RESULTS_TABLE', $table_prefix.'vote_results');
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
-?>
+?> \ No newline at end of file