diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-11-21 18:20:02 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-11-21 18:20:02 +0000 |
commit | 3b42f4297e1ab3eff66f05409f8c74ad37d9f13d (patch) | |
tree | e7308c966499609b5f232a39a71cc222432c1e26 /phpBB/install/install_install.php | |
parent | ab9ec8064acb25d09d6d0edb93ecbe3b59541010 (diff) | |
download | forums-3b42f4297e1ab3eff66f05409f8c74ad37d9f13d.tar forums-3b42f4297e1ab3eff66f05409f8c74ad37d9f13d.tar.gz forums-3b42f4297e1ab3eff66f05409f8c74ad37d9f13d.tar.bz2 forums-3b42f4297e1ab3eff66f05409f8c74ad37d9f13d.tar.xz forums-3b42f4297e1ab3eff66f05409f8c74ad37d9f13d.zip |
decrease the barrier for E_ALL error reporting and email traces from DEBUG_EXTRA to DEBUG
git-svn-id: file:///svn/phpbb/trunk@6629 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_install.php')
-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 a78ed995af..472b79cfa7 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -792,7 +792,7 @@ class install_install extends module $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_EXTRA', true);\n"; // @todo Comment out when final + $config_data .= "// @define('DEBUG_EXTRA', true);\n"; $config_data .= '?' . '>'; // Done this to prevent highlighting editors getting confused! // Attempt to write out the config file directly. If it works, this is the easiest way to do it ... |