bug 339 fixed: crash on metadata synchronization when duplicate keywords.

improvement: tools/metadata.php is nearer of what metadata synchronization
uses (concerning keywords)


git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1222 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2006-04-20 21:12:45 +00:00
parent 81abfe32ec
commit 599665c2cf
2 changed files with 44 additions and 7 deletions

View File

@@ -53,6 +53,16 @@ function get_sync_iptc_data($file)
// official keywords separator is the comma
$iptc['keywords'] = preg_replace('/[.;]/', ',', $iptc['keywords']);
$iptc['keywords'] = preg_replace('/^,+|,+$/', '', $iptc['keywords']);
$iptc['keywords'] = implode(
',',
array_unique(
explode(
',',
$iptc['keywords']
)
)
);
}
return $iptc;