- Function tr() : erreur dans le précédent commit.

This commit is contained in:
Benjamin Renard 2009-03-31 13:22:23 +00:00
parent a6e66a3a69
commit f4ee9bdc42

View file

@ -437,7 +437,12 @@ function LSdebugDefined() {
$val = $GLOBALS['Smarty']->get_template_vars($msg);
if (!$val)
$val=$msg;
echo __($val);
if (is_array($val)) {
echo __($val[$key]);
}
else {
echo __($val);
}
}
}
?>