diff options
author | plegall <plg@piwigo.org> | 2010-05-24 20:07:33 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-05-24 20:07:33 +0000 |
commit | f010502f126df59ef7d9bff518376d534a0def74 (patch) | |
tree | 9a33729c5c939ae407dd1663af10f697f8bf1567 /include | |
parent | 098df99cb3a9d18060a1cd267a5cfc0db1c19610 (diff) |
bug 1694 fixed: COMPUTED Exif fields were not displayed on picture.php
git-svn-id: http://piwigo.org/svn/branches/2.1@6338 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/picture_metadata.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/picture_metadata.inc.php b/include/picture_metadata.inc.php index 96f63cd50..df37b4212 100644 --- a/include/picture_metadata.inc.php +++ b/include/picture_metadata.inc.php @@ -67,14 +67,14 @@ if (($conf['show_exif']) and (function_exists('read_exif_data'))) else { $tokens = explode(';', $field); - if (isset($exif[$tokens[0]][$tokens[1]])) + if (isset($exif[$field])) { $key = $tokens[1]; - if (isset($lang['exif_field_'.$tokens[1]])) + if (isset($lang['exif_field_'.$key])) { - $key = $lang['exif_field_'.$tokens[1]]; + $key = $lang['exif_field_'.$key]; } - $tpl_meta['lines'][$key] = $exif[$tokens[0]][$tokens[1]]; + $tpl_meta['lines'][$key] = $exif[$field]; } } } |