summaryrefslogtreecommitdiffstats
path: root/system/libraries/Image_lib.php
diff options
context:
space:
mode:
authorMike Funk <mfunk@xulonpress.com>2012-03-07 19:33:27 +0100
committerMike Funk <mfunk@xulonpress.com>2012-03-07 19:33:27 +0100
commit9fcb2ad0e435fdfeda5b147b3fee112b4cb89861 (patch)
treebbaa310e66f1b6463a498737658674cf1c0322ae /system/libraries/Image_lib.php
parentaa20f5b70f6da196d1a66d5dc17b05a037708e1a (diff)
parent1d571971be8be78a92d31aad27dda4009770043f (diff)
merged latest develop branch, fixed changelog conflict.
Diffstat (limited to 'system/libraries/Image_lib.php')
-rw-r--r--system/libraries/Image_lib.php2
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));
}