Traitement des valeurs spéciales

This commit is contained in:
Michael RICOIS 2012-04-06 09:10:35 +00:00
parent ad36ad7f1e
commit 2da9a49174

View File

@ -461,6 +461,11 @@ class Enrichissement
//Retourne le libellé pour chaque clés du dictionnaire
public function getDicoLib($key)
{
//Si () alors traitement champs spécial
if ( preg_match('/(.*)\((.*)\)/', $key, $matches) ) {
$key = $matches[1];
}
if (array_key_exists($key, $this->tabDico))
{
$element = $this->tabDico[$key];