diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-18 14:33:18 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-18 14:33:18 +0000 |
commit | 1dc89ca465fbe005421b6248569b322489c8701f (patch) | |
tree | 41d23d2f336c044398234b67a195c213ea2dbbf3 /phpBB/install | |
parent | 41aae48ad371c3044d1d355f2380735bd45cba92 (diff) | |
download | forums-1dc89ca465fbe005421b6248569b322489c8701f.tar forums-1dc89ca465fbe005421b6248569b322489c8701f.tar.gz forums-1dc89ca465fbe005421b6248569b322489c8701f.tar.bz2 forums-1dc89ca465fbe005421b6248569b322489c8701f.tar.xz forums-1dc89ca465fbe005421b6248569b322489c8701f.zip |
Disable DEBUG by default, enable backtrace by default
git-svn-id: file:///svn/phpbb/trunk@7631 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rwxr-xr-x | phpBB/install/install_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 9635036dee..5eecbeea33 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -908,7 +908,7 @@ class install_install extends module $config_data .= "\$acm_type = 'file';\n"; $config_data .= "\$load_extensions = '$load_extensions';\n\n"; $config_data .= "@define('PHPBB_INSTALLED', true);\n"; - $config_data .= "@define('DEBUG', true);\n"; // @todo Comment out when final + $config_data .= "// @define('DEBUG', true);\n"; $config_data .= "// @define('DEBUG_EXTRA', true);\n"; $config_data .= '?' . '>'; // Done this to prevent highlighting editors getting confused! |