aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_metadata.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2014-04-05 19:33:48 +0000
committerrvelices <rv-github@modusoptimus.com>2014-04-05 19:33:48 +0000
commit1786cac8b0a55cd8a892a206236c3e377e213c7e (patch)
tree38e7627e58d76bf62687a5af902337e8f6bfde21 /include/functions_metadata.inc.php
parent1f3f5ff73f505cbc6041ae213398d240f61d5a60 (diff)
when displaying iptc metadata, add a space between iptc keywords (if there are many, the html line is unbreakable)
git-svn-id: http://piwigo.org/svn/trunk@28089 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_metadata.inc.php')
-rw-r--r--include/functions_metadata.inc.php4
1 files changed, 2 insertions, 2 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