diff options
author | Nils Adermann <naderman@naderman.de> | 2011-01-11 23:25:51 +0100 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-01-12 00:21:04 +0100 |
commit | 6b1e343d8dae618afd0cb04173749f005c10e376 (patch) | |
tree | 20a820f330dde99b3c2eac0c57a812c86a789cf9 /phpBB/includes/captcha/plugins | |
parent | 106f6800d4d898f079129e85fd6763c199dae9ec (diff) | |
download | forums-6b1e343d8dae618afd0cb04173749f005c10e376.tar forums-6b1e343d8dae618afd0cb04173749f005c10e376.tar.gz forums-6b1e343d8dae618afd0cb04173749f005c10e376.tar.bz2 forums-6b1e343d8dae618afd0cb04173749f005c10e376.tar.xz forums-6b1e343d8dae618afd0cb04173749f005c10e376.zip |
[task/config-class] Always specify the config table to use.
PHPBB3-9988
Diffstat (limited to 'phpBB/includes/captcha/plugins')
-rw-r--r-- | phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php index 1c82065a90..add8c3959f 100644 --- a/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php +++ b/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php @@ -154,7 +154,7 @@ class phpbb_captcha_gd extends phpbb_default_captcha $config_old = $config; $config = new phpbb_config(array()); - foreach ($old_config as $key => $value) + foreach ($config_old as $key => $value) { $config->set($key, $value); } |