mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/11854] Add missing dot in the migration file
PHPBB3-11854
This commit is contained in:
parent
dd88022a70
commit
a1d5ad8a37
1 changed files with 2 additions and 2 deletions
|
@ -31,11 +31,11 @@ class captcha_plugins extends \phpbb\db\migration\migration
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
array('if', 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('config.update', array('captcha_plugin', 'core.captcha.plugins.' . $captcha_plugin)),
|
||||||
)),
|
)),
|
||||||
array('if', 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.nogd')),
|
array('config.update', array('captcha_plugin', 'core.captcha.plugins.nogd')),
|
||||||
)),
|
)),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue