Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek Przybylski <bart.p.pl@gmail.com>2012-03-11 19:49:21 +0400
committerBartek Przybylski <bart.p.pl@gmail.com>2012-03-11 19:49:42 +0400
commitf6075cc1fe516c3eb553b6b28380b133b7da8dda (patch)
tree6305c9c8c2cc90e213eea52bef780dffef3e8f34 /lib/image.php
parent92221e98de38fe26a3aa2b2b722ebc218664ab7d (diff)
gallery migration to events system
Diffstat (limited to 'lib/image.php')
-rw-r--r--lib/image.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/image.php b/lib/image.php
index fe8349be543..60a714880d0 100644
--- a/lib/image.php
+++ b/lib/image.php
@@ -216,7 +216,7 @@ class OC_Image {
OC_Log::write('core','OC_Image->fixOrientation() No readable file path set.', OC_Log::DEBUG);
return false;
}
- $exif = exif_read_data($this->filepath, 'IFD0');
+ $exif = @exif_read_data($this->filepath, 'IFD0');
if(!$exif) {
return false;
}