commit | c697a3bfdfc301718058a09fd5692fbecee6920a | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Fri Feb 07 15:11:56 2014 +0200 |
committer | Andrey Andreev <narf@devilix.net> | Fri Feb 07 15:11:56 2014 +0200 |
tree | b0f2b31165f6b0dfacfd778ba50286373e7ab9c5 | |
parent | 8c7138a7cc6a9a855fc10763afb2571d7f1cec75 [diff] [blame] |
Use is_really_writable() in captcha helper
diff --git a/system/helpers/captcha_helper.php b/system/helpers/captcha_helper.php index 24cd535..b61b2d5 100644 --- a/system/helpers/captcha_helper.php +++ b/system/helpers/captcha_helper.php
@@ -82,7 +82,7 @@ } if ($img_path === '' OR $img_url === '' - OR ! @is_dir($img_path) OR ! is_writeable($img_path) + OR ! @is_dir($img_path) OR ! is_really_writable($img_path) OR ! extension_loaded('gd')) { return FALSE;