mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 14:48:53 +00:00
made a mistake when turning stats into a whitelist
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9856 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
ba37fa4f49
commit
4faf662623
1 changed files with 4 additions and 3 deletions
|
@ -253,6 +253,7 @@ class phpbb_questionnaire_phpbb_data_provider
|
|||
'allow_namechange' => true,
|
||||
'allow_nocensors' => true,
|
||||
'allow_pm_attach' => true,
|
||||
'allow_pm_report' => true,
|
||||
'allow_post_flash' => true,
|
||||
'allow_post_links' => true,
|
||||
'allow_privmsg' => true,
|
||||
|
@ -435,11 +436,11 @@ class phpbb_questionnaire_phpbb_data_provider
|
|||
);
|
||||
|
||||
$result = array();
|
||||
foreach ($this->config as $name => $value)
|
||||
foreach ($config_vars as $name => $void)
|
||||
{
|
||||
if (!isset($exclude_config_vars[$name]))
|
||||
if (isset($this->config[$name]))
|
||||
{
|
||||
$result['config.' . $name] = $value;
|
||||
$result['config.' . $name] = $this->config[$name];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue