summaryrefslogtreecommitdiffstats
path: root/system/libraries/Image_lib.php
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2008-05-16 06:14:36 +0200
committerDerek Jones <derek.jones@ellislab.com>2008-05-16 06:14:36 +0200
commitef40640f53351cea789a9657050422917f0b581f (patch)
tree1a4d5a7829c23ec27d396e69e0402162ce2b618b /system/libraries/Image_lib.php
parent245038d6a5121f396b231d268d3ca5edac9c105a (diff)
fixed regular expression in Image lib, CI bug #4542
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 a602b4645..430369786 100644
--- a/system/libraries/Image_lib.php
+++ b/system/libraries/Image_lib.php
@@ -226,7 +226,7 @@ class CI_Image_lib {
}
// Is there a file name?
- if ( ! preg_match("#[\.jpg|\.jpeg|\.gif|\.png]$#i", $full_dest_path))
+ if ( ! preg_match("#\.(jpg|jpeg|gif|png)$#i", $full_dest_path))
{
$this->dest_folder = $full_dest_path.'/';
$this->dest_image = $this->source_image;