Revert r9878 - QR was already disabled by default, for admin convenience we enable the global setting but no local setting, which results in OFF by default

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9895 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2009-07-31 08:16:36 +00:00
parent 686f84a8fc
commit e6f133dc55
2 changed files with 2 additions and 2 deletions

View file

@ -1452,7 +1452,7 @@ function change_database_data(&$no_updates, $version)
if (!isset($config['allow_quick_reply']))
{
set_config('allow_quick_reply', '0');
set_config('allow_quick_reply', '1');
}
// Set every members user_options column to enable

View file

@ -27,7 +27,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_pm_report',
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_flash', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_links', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_privmsg', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_quick_reply', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_quick_reply', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_bbcode', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_flash', '0');