diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-02-29 13:31:42 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-02-29 13:31:42 +0100 |
commit | 8a51f885b1bfdb816088837cd4443511bd77ed7a (patch) | |
tree | bceed829e8b938c0a5e3ee4cb3869d370aba2cfc /system/libraries/Image_lib.php | |
parent | f51e13f80b5539c329e43abc6004c5576862a27c (diff) | |
parent | 002b4be248e448227a718e6f7d9ee39ccc575745 (diff) |
Merge remote-tracking branch 'upstream/develop' into develop-issue-499
Diffstat (limited to 'system/libraries/Image_lib.php')
-rw-r--r-- | system/libraries/Image_lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Image_lib.php b/system/libraries/Image_lib.php index 5ea830fb1..9826eabdd 100644 --- a/system/libraries/Image_lib.php +++ b/system/libraries/Image_lib.php @@ -251,7 +251,7 @@ class CI_Image_lib { } else { - if (function_exists('realpath') && @realpath($this->new_image) !== FALSE) + if (strpos($this->new_image, '/') === FALSE AND strpos($this->new_image, '\\') === FALSE) { $full_dest_path = str_replace('\\', '/', realpath($this->new_image)); } |