mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 15:27:42 +02:00
Move add_log() call for captcha "configure" page to the captcha plugin, because only the plugin is able to know if the config got updated or not.
Note to captcha MOD authors: please check if you have a function acp_page() and if an add_log() call is required for your plugin. Bug #51695 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10177 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -48,7 +48,6 @@ class acp_captcha
|
|||||||
{
|
{
|
||||||
$config_captcha =& phpbb_captcha_factory::get_instance($selected);
|
$config_captcha =& phpbb_captcha_factory::get_instance($selected);
|
||||||
$config_captcha->acp_page($id, $this);
|
$config_captcha->acp_page($id, $this);
|
||||||
add_log('admin', 'LOG_CONFIG_VISUAL');
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@@ -123,6 +123,8 @@ class phpbb_captcha_gd extends phpbb_default_captcha
|
|||||||
set_config($captcha_var, $value);
|
set_config($captcha_var, $value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
add_log('admin', 'LOG_CONFIG_VISUAL');
|
||||||
trigger_error($user->lang['CONFIG_UPDATED'] . adm_back_link($module->u_action));
|
trigger_error($user->lang['CONFIG_UPDATED'] . adm_back_link($module->u_action));
|
||||||
}
|
}
|
||||||
else if ($submit)
|
else if ($submit)
|
||||||
|
@@ -685,6 +685,7 @@ class phpbb_captcha_qa
|
|||||||
$this->acp_add_question($data);
|
$this->acp_add_question($data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
add_log('admin', 'LOG_CONFIG_VISUAL');
|
||||||
trigger_error($user->lang['CONFIG_UPDATED'] . adm_back_link($list_url));
|
trigger_error($user->lang['CONFIG_UPDATED'] . adm_back_link($list_url));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -100,6 +100,8 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||||||
set_config($captcha_var, $value);
|
set_config($captcha_var, $value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
add_log('admin', 'LOG_CONFIG_VISUAL');
|
||||||
trigger_error($user->lang['CONFIG_UPDATED'] . adm_back_link($module->u_action));
|
trigger_error($user->lang['CONFIG_UPDATED'] . adm_back_link($module->u_action));
|
||||||
}
|
}
|
||||||
else if ($submit)
|
else if ($submit)
|
||||||
|
Reference in New Issue
Block a user