2
0
forked from Wavyzz/dolibarr

Fix: Uniformisation du code. Sur le noms de fichiers PDF gnrs, on garde les parenthses partout. Ceci afin d'eviter conflit entre un nom temporaire et un nom du module de numrotation.

This commit is contained in:
Laurent Destailleur
2006-05-31 21:39:54 +00:00
parent c42825f0f3
commit b5bdf7ce8c
16 changed files with 5 additions and 30 deletions

View File

@@ -143,8 +143,10 @@ function unaccent($str)
*/
function sanitize_string($str)
{
$forbidden_chars=array(" ","'","/","\\",":","*","?","\"","<",">","|","[","]",",",";","=");
return str_replace($forbidden_chars,"_",$str);
$forbidden_chars_to_underscore=array(" ","'","/","\\",":","*","?","\"","<",">","|","[","]",",",";","=");
//$forbidden_chars_to_remove=array("(",")");
$forbidden_chars_to_remove=array();
return str_replace($forbidden_chars_to_underscore,"_",str_replace($forbidden_chars_to_remove,"",$str));
}