diff options
author | Derek Jones <derek.jones@ellislab.com> | 2010-04-22 23:36:40 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2010-04-22 23:36:40 +0200 |
commit | 52c592bb08ad5fbc4ded7aedaa81e2f3fb329b8c (patch) | |
tree | 4c98e8c0a9583523c07913688a331a32e502694f /system | |
parent | 47cd452c91a3dc7dab4a8285136bee2048fc7bba (diff) |
tiny modification to whitespace from philsturgeon's bugfix to match CI style guidelines
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php index 0e71aee6b..b85663bcc 100644 --- a/system/libraries/Upload.php +++ b/system/libraries/Upload.php @@ -578,7 +578,7 @@ class CI_Upload { $mime = $this->mimes_types(strtolower($val)); // Images get some additional checks - if ($this->file_ext == '.' . $val && in_array($val, $image_types)) + if ($this->file_ext == '.'.$val && in_array($val, $image_types)) { if (getimagesize($this->file_temp) === FALSE) { |