Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2166 → Rev 2167

/trunk/jrest/lib/GestionMotsClesChemin.php
564,7 → 564,7
static public function simplifier($text) {
$caracteresASupprimer = array('\\','/', ',');
$text = str_replace($caracteresASupprimer, '', $text);
$text = strtolower(trim($text));
$text = trim($text);
return $text;
}