diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-12-23 00:26:26 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-12-23 00:26:26 -0500 |
commit | fa2edf518748e3ec812857cf913235793216a027 (patch) | |
tree | 6b809c3e6fe258c3152f3f3a3af2ddd0302f7b75 /phpBB/includes | |
parent | 37fa5e56f3e2cc4be6978889cf2c6fe31bf5bf1b (diff) | |
download | forums-fa2edf518748e3ec812857cf913235793216a027.tar forums-fa2edf518748e3ec812857cf913235793216a027.tar.gz forums-fa2edf518748e3ec812857cf913235793216a027.tar.bz2 forums-fa2edf518748e3ec812857cf913235793216a027.tar.xz forums-fa2edf518748e3ec812857cf913235793216a027.zip |
[ticket/10546] Add missing argument to adm_back_link in acp_captcha.
PHPBB3-10546
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/acp/acp_captcha.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_captcha.php b/phpBB/includes/acp/acp_captcha.php index 1893eed14f..469a367bba 100644 --- a/phpBB/includes/acp/acp_captcha.php +++ b/phpBB/includes/acp/acp_captcha.php @@ -96,7 +96,7 @@ class acp_captcha } else if ($submit) { - trigger_error($user->lang['FORM_INVALID'] . adm_back_link(), E_USER_WARNING); + trigger_error($user->lang['FORM_INVALID'] . adm_back_link($this->u_action), E_USER_WARNING); } else { |