2
0
forked from Wavyzz/dolibarr

No special chars in filename

This commit is contained in:
Laurent Destailleur
2008-10-25 22:43:27 +00:00
parent 2203b01867
commit 64ff118c37

View File

@@ -108,7 +108,7 @@ function dol_string_unaccent($str)
'%C3%99' => 'U','%C3%9A' => 'U'
);
$ret=strtr($string, $replacements);
return $ret;
return rawurldecode($ret);
}
else
{