1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[task/config-class] Always specify the config table to use.

PHPBB3-9988
This commit is contained in:
Nils Adermann
2011-01-11 23:25:51 +01:00
parent 106f6800d4
commit 6b1e343d8d
8 changed files with 28 additions and 34 deletions

View File

@@ -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);
}