add missing constant to config file

git-svn-id: file:///svn/phpbb/trunk@8583 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2008-06-03 14:57:04 +00:00
parent de5ddf3907
commit 990e3cd4b2

View file

@ -923,7 +923,9 @@ class install_install extends module
} }
unset($config_data_array); unset($config_data_array);
$config_data .= "\n@define('PHPBB_INSTALLED', true);\n"; $config_data .= "\n// If you rename your admin folder, please change this value\n";
$config_data .= "@define('CONFIG_ADM_FOLDER', 'adm');\n";
$config_data .= "@define('PHPBB_INSTALLED', true);\n";
$config_data .= "@define('DEBUG', true);\n"; $config_data .= "@define('DEBUG', true);\n";
$config_data .= "@define('DEBUG_EXTRA', true);\n"; $config_data .= "@define('DEBUG_EXTRA', true);\n";
$config_data .= '?' . '>'; // Done this to prevent highlighting editors getting confused! $config_data .= '?' . '>'; // Done this to prevent highlighting editors getting confused!