diff options
author | Chris Smith <toonarmy@phpbb.com> | 2011-09-25 22:13:43 +0100 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2011-09-25 22:13:43 +0100 |
commit | 81f9385477e1a6b050f447c9659faaf0bc7e871a (patch) | |
tree | 8c70f2926e523f54f2598a88da7b55227769848e /phpBB/install/schemas | |
parent | 138d1050fcfa910eb8819e91034741ed74baf4f3 (diff) | |
download | forums-81f9385477e1a6b050f447c9659faaf0bc7e871a.tar forums-81f9385477e1a6b050f447c9659faaf0bc7e871a.tar.gz forums-81f9385477e1a6b050f447c9659faaf0bc7e871a.tar.bz2 forums-81f9385477e1a6b050f447c9659faaf0bc7e871a.tar.xz forums-81f9385477e1a6b050f447c9659faaf0bc7e871a.zip |
[ticket/9307] Add config variable to installation schema.
PHPBB3-9307
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 153ac61157..84b25d676e 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -94,6 +94,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('delete_time', '0') INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_check_mx', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_enable', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_function_name', 'mail'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_max_chunk_size', '50'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_package_size', '20'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_confirm', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_pm_icons', '1'); |