- bug fixed : no need to wrap iptc values into quotes, they are added by

mass_insert


git-svn-id: http://piwigo.org/svn/trunk@730 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2005-02-08 21:56:12 +00:00
commit ec98902e5a

View file

@ -101,7 +101,7 @@ function update_metadata($files)
{
foreach (array_keys($iptc) as $key)
{
$data[$key] = "'".addslashes($iptc[$key])."'";
$data[$key] = addslashes($iptc[$key]);
}
}
}