From 3c69c8f00a70ceeebabcd1cec79b6077ad785062 Mon Sep 17 00:00:00 2001 From: David M Date: Tue, 1 Aug 2006 04:23:13 +0000 Subject: - Captcha ACP - BBCode stuff git-svn-id: file:///svn/phpbb/trunk@6222 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/acp/acp_captcha.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/includes/acp/acp_captcha.php') diff --git a/phpBB/includes/acp/acp_captcha.php b/phpBB/includes/acp/acp_captcha.php index 8aaca2d3dd..3ac354004a 100644 --- a/phpBB/includes/acp/acp_captcha.php +++ b/phpBB/includes/acp/acp_captcha.php @@ -89,7 +89,7 @@ class acp_captcha trigger_error($user->lang['NO_GD']); } - if (($policy !== 'policy_entropy' || $policy !== 'policy_3dbitmap') && !(function_exists('imagettfbbox') && function_exists('imagettftext'))) + if (!($policy === 'policy_entropy' || $policy === 'policy_3dbitmap') && (!function_exists('imagettfbbox') || !function_exists('imagettftext'))) { trigger_error($user->lang['NO_TTF']); } -- cgit v1.2.1