Skip to content
Snippets Groups Projects
Commit 64ff118c authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

No special chars in filename

parent 2203b018
No related tags found
No related merge requests found
...@@ -108,7 +108,7 @@ function dol_string_unaccent($str) ...@@ -108,7 +108,7 @@ function dol_string_unaccent($str)
'%C3%99' => 'U','%C3%9A' => 'U' '%C3%99' => 'U','%C3%9A' => 'U'
); );
$ret=strtr($string, $replacements); $ret=strtr($string, $replacements);
return $ret; return rawurldecode($ret);
} }
else else
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment