aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_captcha.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-10-02 15:11:40 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-10-02 15:11:40 +0000
commitcc4a0a2f7a02f909735d265f4f199f9736c30a48 (patch)
treeaa984be5c8fca4b1f05d7fa755b2f3d382a89cf7 /phpBB/includes/acp/acp_captcha.php
parentfc76c94ab14993f98e0bbbf8b26150886ce69352 (diff)
downloadforums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.tar
forums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.tar.gz
forums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.tar.bz2
forums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.tar.xz
forums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.zip
consistent acp layout regarding backlinks and messages.
git-svn-id: file:///svn/phpbb/trunk@6428 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_captcha.php')
-rw-r--r--phpBB/includes/acp/acp_captcha.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acp/acp_captcha.php b/phpBB/includes/acp/acp_captcha.php
index b3d13c42f9..b16b76495f 100644
--- a/phpBB/includes/acp/acp_captcha.php
+++ b/phpBB/includes/acp/acp_captcha.php
@@ -86,17 +86,17 @@ class acp_captcha
if (!@extension_loaded('gd'))
{
- trigger_error($user->lang['NO_GD'], E_USER_WARNING);
+ trigger_error($user->lang['NO_GD'] . adm_back_link($this->u_action), E_USER_WARNING);
}
if (!($policy === 'policy_entropy' || $policy === 'policy_3dbitmap') && (!function_exists('imagettfbbox') || !function_exists('imagettftext')))
{
- trigger_error($user->lang['NO_TTF'], E_USER_WARNING);
+ trigger_error($user->lang['NO_TTF'] . adm_back_link($this->u_action), E_USER_WARNING);
}
if (!in_array($policy, $policy_modules))
{
- trigger_error($user->lang['BAD_POLICY'], E_USER_WARNING);
+ trigger_error($user->lang['BAD_POLICY'] . adm_back_link($this->u_action), E_USER_WARNING);
}
$user->add_lang('ucp');