1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 11:44:08 +02:00

- Captcha ACP

- BBCode stuff


git-svn-id: file:///svn/phpbb/trunk@6222 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2006-08-01 04:23:13 +00:00
parent 85e049dd66
commit 3c69c8f00a
5 changed files with 9 additions and 5 deletions

View File

@@ -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']);
}