diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-08-13 14:34:12 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-08-13 14:37:15 +0200 |
commit | ef4e6b9aedb7ffd058220de2d8ab2b44b1447d00 (patch) | |
tree | b7f00b8eb735709da0b05f03a59d927747e582cb /program/lib/Roundcube | |
parent | 7cf65245906408dfdb004d17359a6c1aaa1f4ef9 (diff) |
Cleanup after PR merge, updated changelog
Diffstat (limited to 'program/lib/Roundcube')
-rw-r--r-- | program/lib/Roundcube/rcube_image.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube_image.php b/program/lib/Roundcube/rcube_image.php index 565e9db0e..122b5f48a 100644 --- a/program/lib/Roundcube/rcube_image.php +++ b/program/lib/Roundcube/rcube_image.php @@ -206,10 +206,10 @@ class rcube_image $image = $new_image; // fix rotation of image if EXIF data exists and specifies rotation (GD strips the EXIF data) - if ($this->image_file && function_exists(exif_read_data) ) { + if ($this->image_file && function_exists('exif_read_data')) { $exif = exif_read_data($this->image_file); if ($exif && $exif['Orientation']) { - switch($exif['Orientation']) { + switch ($exif['Orientation']) { case 3: $image = imagerotate($image, 180, 0); break; |