diff options
author | Andrey Andreev <narf@devilix.net> | 2014-08-10 23:11:36 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-08-10 23:11:36 +0200 |
commit | 09546edca0645af6002caa00a2f9b7eaaae38f17 (patch) | |
tree | d3883307d669ef07c89e71ef149142b6b2935a67 /system | |
parent | 8aedf238c1b6f5fec953830f4c5a1eca65fe0b73 (diff) |
Polish changes following PR #3173
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/captcha_helper.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/helpers/captcha_helper.php b/system/helpers/captcha_helper.php index 36a53749f..f4ed6168f 100644 --- a/system/helpers/captcha_helper.php +++ b/system/helpers/captcha_helper.php @@ -217,15 +217,15 @@ if ( ! function_exists('create_captcha')) // ----------------------------------- $img_url = rtrim($img_url, '/').'/'; - if (function_exists('ImageJPEG')) + if (function_exists('imagejpeg')) { $img_filename = $now.'.jpg'; - ImageJPEG($im, $img_path.$img_filename); + imagejpeg($im, $img_path.$img_filename); } - elseif (function_exists('ImagePNG')) + elseif (function_exists('imagepng')) { $img_filename = $now.'.png'; - ImagePNG($im, $img_path.$img_filename); + imagepng($im, $img_path.$img_filename); } else { |