diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/functions_metadata.inc.php | 4 | ||||
-rw-r--r-- | include/picture_metadata.inc.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/functions_metadata.inc.php b/include/functions_metadata.inc.php index fc74e2aec..e19b82423 100644 --- a/include/functions_metadata.inc.php +++ b/include/functions_metadata.inc.php @@ -33,7 +33,7 @@ * @param array $map * @return array */ -function get_iptc_data($filename, $map) +function get_iptc_data($filename, $map, $array_sep=',') { global $conf; @@ -57,7 +57,7 @@ function get_iptc_data($filename, $map) { if ($iptc_key == '2#025') { - $value = implode(',', + $value = implode($array_sep, array_map('clean_iptc_value',$iptc[$iptc_key])); } else diff --git a/include/picture_metadata.inc.php b/include/picture_metadata.inc.php index 0e9284246..0df50dfbf 100644 --- a/include/picture_metadata.inc.php +++ b/include/picture_metadata.inc.php @@ -79,7 +79,7 @@ if (($conf['show_exif']) and (function_exists('read_exif_data'))) if ($conf['show_iptc']) { - $iptc = get_iptc_data($picture['current']['src_image']->get_path(), $conf['show_iptc_mapping']); + $iptc = get_iptc_data($picture['current']['src_image']->get_path(), $conf['show_iptc_mapping'], ', '); if (count($iptc) > 0) { |