From 6e7fc679007be4fdc465f8fb9237a61f252defd1 Mon Sep 17 00:00:00 2001 From: Alan Garcia Date: Thu, 27 Mar 2014 09:57:34 +0000 Subject: [PATCH] Corrige un bug d'affichage du tableau de variables --- bureau/class/m_variables.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bureau/class/m_variables.php b/bureau/class/m_variables.php index 19efe050..942b5fcf 100644 --- a/bureau/class/m_variables.php +++ b/bureau/class/m_variables.php @@ -134,7 +134,7 @@ class m_variables { case 'DEFAULT': // $variables = $this->variable_merge(array(),$arr_var['DEFAULT'][NULL]); - $variablesList = current($arr_var["DEFAULT"]); + $variablesList = current($arr_var["DEFAULT"]); $variables = $this->variable_merge(array(),$variablesList); break; case 'GLOBAL': @@ -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 .= ""._("None defined").""; }