Corrige un bug d'affichage du tableau de variables

This commit is contained in:
Alan Garcia 2014-03-27 09:57:34 +00:00
parent 8d59c84598
commit 6e7fc67900
1 changed files with 2 additions and 2 deletions

View File

@ -372,7 +372,7 @@ class m_variables {
$output = "";
if (isset($tab[$strata][$id][$varname]['value'])) {
$v = $tab[$strata][$id][$varname]['value'];
$output .= $this->display_valueraw_html($v, $varname);
$output .= $this->display_valueraw_html($v, $varname, false);
} else {
$output .= "<em>"._("None defined")."</em>";
}