mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
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:
parent
686f84a8fc
commit
e6f133dc55
2 changed files with 2 additions and 2 deletions
|
@ -1452,7 +1452,7 @@ function change_database_data(&$no_updates, $version)
|
||||||
|
|
||||||
if (!isset($config['allow_quick_reply']))
|
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
|
// Set every members user_options column to enable
|
||||||
|
|
|
@ -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_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_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_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', '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_bbcode', '1');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_flash', '0');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_flash', '0');
|
||||||
|
|
Loading…
Add table
Reference in a new issue