diff options
Diffstat (limited to 'picture.php')
-rw-r--r-- | picture.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/picture.php b/picture.php index 7028da435..22d86fd72 100644 --- a/picture.php +++ b/picture.php @@ -803,6 +803,11 @@ if ($metadata_showable and isset($_GET['show_metadata'])) $template->assign_block_vars('metadata', array()); if ($conf['show_exif']) { + if (!function_exists('read_exif_data')) + { + die('Exif extension not available, admin should disable exif display'); + } + if ($exif = @read_exif_data($picture['current']['src'])) { $template->assign_block_vars( |