diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-08-05 12:59:55 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-08-05 12:59:55 +0200 |
commit | cbe74844b01f72d2007376ceafdf979a6cc94d47 (patch) | |
tree | 558cc4463fdd8cf4b67f6a42197e2349560e690e /phpBB/install/schemas | |
parent | e70373a8202e0431a99f80b941e46ae0282a94d4 (diff) | |
parent | 88348e1ccc32e8ba731ee079383061792ab01a16 (diff) | |
download | forums-cbe74844b01f72d2007376ceafdf979a6cc94d47.tar forums-cbe74844b01f72d2007376ceafdf979a6cc94d47.tar.gz forums-cbe74844b01f72d2007376ceafdf979a6cc94d47.tar.bz2 forums-cbe74844b01f72d2007376ceafdf979a6cc94d47.tar.xz forums-cbe74844b01f72d2007376ceafdf979a6cc94d47.zip |
Merge pull request #3698 from s9e/ticket/13935
[ticket/13935] Allow more admin-configurable schemes in post links
* s9e/ticket/13935:
[ticket/13935] Removed cache invalidation from acp_board
[ticket/13935] Removed UI
[ticket/13935] Allow more admin-configurable schemes in post links
Diffstat (limited to 'phpBB/install/schemas')
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index 06626b4617..f02bca2985 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -41,6 +41,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_pm', '1' INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_smilies', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_smilies', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_topic_notify', '1'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('allowed_schemes_links', 'http,https,ftp'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('assets_version', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('attachment_quota', '52428800'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_bbcode_pm', '1'); |