diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-08-08 19:04:26 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-08-11 01:15:58 +0200 |
commit | a1d5ad8a37144aaa1b5d32b3e61afc895cc60bfb (patch) | |
tree | 4d0025a6bf8dbe93e4cc822c51f6497d52daea90 /phpBB/phpbb/db | |
parent | dd88022a7010d6840f305423cb631c7c3e658f7f (diff) | |
download | forums-a1d5ad8a37144aaa1b5d32b3e61afc895cc60bfb.tar forums-a1d5ad8a37144aaa1b5d32b3e61afc895cc60bfb.tar.gz forums-a1d5ad8a37144aaa1b5d32b3e61afc895cc60bfb.tar.bz2 forums-a1d5ad8a37144aaa1b5d32b3e61afc895cc60bfb.tar.xz forums-a1d5ad8a37144aaa1b5d32b3e61afc895cc60bfb.zip |
[ticket/11854] Add missing dot in the migration file
PHPBB3-11854
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/captcha_plugins.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/captcha_plugins.php b/phpBB/phpbb/db/migration/data/v310/captcha_plugins.php index 8fe52355a9..5e0a09e75a 100644 --- a/phpBB/phpbb/db/migration/data/v310/captcha_plugins.php +++ b/phpBB/phpbb/db/migration/data/v310/captcha_plugins.php @@ -31,11 +31,11 @@ class captcha_plugins extends \phpbb\db\migration\migration return array( array('if', array( - (is_file($this->phpbb_root_path . 'phpbb/captcha/plugins/' . $captcha_plugin . $this->php_ext)), + (is_file($this->phpbb_root_path . 'phpbb/captcha/plugins/' . $captcha_plugin . '.' . $this->php_ext)), array('config.update', array('captcha_plugin', 'core.captcha.plugins.' . $captcha_plugin)), )), array('if', array( - (!is_file($this->phpbb_root_path . 'phpbb/captcha/plugins/' . $captcha_plugin . $this->php_ext)), + (!is_file($this->phpbb_root_path . 'phpbb/captcha/plugins/' . $captcha_plugin . '.' . $this->php_ext)), array('config.update', array('captcha_plugin', 'core.captcha.plugins.nogd')), )), ); |