diff --git a/library/Scores/Enrichissement.php b/library/Scores/Enrichissement.php index b96a12cd..19a684f2 100644 --- a/library/Scores/Enrichissement.php +++ b/library/Scores/Enrichissement.php @@ -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];