diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-05-11 09:47:08 +0200 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-05-11 09:47:08 +0200 |
commit | 2472021745fa040d65b04c50b0ff14dba1c7fcbe (patch) | |
tree | e56d8e99b598d0736c3de2d4ff863297c878e672 /phpfspot.class.php | |
parent | d97a057346bebb98be293d903a86987273cbee3e (diff) |
do not make get_meta_informations silent - accidently pulled from Arun
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index 1e07ccc..49d0c7d 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -1641,7 +1641,7 @@ class PHPFSPOT { */ public function get_meta_informations($file) { - return @exif_read_data($file); + return exif_read_data($file); } // get_meta_informations() |