diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-08-08 18:22:11 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-08-11 01:15:54 +0200 |
commit | dd88022a7010d6840f305423cb631c7c3e658f7f (patch) | |
tree | 4c556c117431464d2cb47dab29e418f235cbb81b /phpBB/install/schemas | |
parent | 160ff7b912243dc14d871b820213ddcd20dd06f4 (diff) | |
download | forums-dd88022a7010d6840f305423cb631c7c3e658f7f.tar forums-dd88022a7010d6840f305423cb631c7c3e658f7f.tar.gz forums-dd88022a7010d6840f305423cb631c7c3e658f7f.tar.bz2 forums-dd88022a7010d6840f305423cb631c7c3e658f7f.tar.xz forums-dd88022a7010d6840f305423cb631c7c3e658f7f.zip |
[ticket/11854] Add a migration to update the captcha_plugin setting
PHPBB3-11854
Diffstat (limited to 'phpBB/install/schemas')
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index 9cc151f728..5589e10243 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -70,7 +70,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('browser_check', '1 INSERT INTO phpbb_config (config_name, config_value) VALUES ('bump_interval', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('bump_type', 'd'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('cache_gc', '7200'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_plugin', 'phpbb_captcha_nogd'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_plugin', 'core.captcha.plugins.nogd'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_foreground_noise', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_x_grid', '25'); |