From 7c2ef05a38d340264fdf37273a605a38c09f2b21 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 21 Aug 2005 18:55:34 +0000 Subject: [PATCH] Fix: Meilleur respet W3C --- htdocs/html.form.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/html.form.class.php b/htdocs/html.form.class.php index 660525d2c97..3ce2ac59363 100644 --- a/htdocs/html.form.class.php +++ b/htdocs/html.form.class.php @@ -220,7 +220,7 @@ class Form } // Si traduction existe, on l'utilise, sinon on prend le libellé par défaut if ($obj->code) { print $obj->code . ' - '; } - print ($obj->code && $langs->trans("Country".$obj->code)!="Country".$obj->code?$langs->trans("Country".$obj->code):($obj->libelle!='-'?$obj->libelle:'')); + print ($obj->code && $langs->trans("Country".$obj->code)!="Country".$obj->code?$langs->trans("Country".$obj->code):($obj->libelle!='-'?$obj->libelle:' ')); print ''; $i++; }