diff --git a/htdocs/expensereport/class/expensereport.class.php b/htdocs/expensereport/class/expensereport.class.php
index e36040743ad31916540f0bbbf4003ea398ad1364..04f5628a224a941269a4af680c2f4e9dc92c9367 100644
--- a/htdocs/expensereport/class/expensereport.class.php
+++ b/htdocs/expensereport/class/expensereport.class.php
@@ -417,22 +417,22 @@ class ExpenseReport extends CommonObject
         global $langs;
 
         if ($mode == 0)
-            return $langs->trans($this->statuts[$status]);
+            return $langs->transnoentities($this->statuts[$status]);
 
         if ($mode == 1)
-            return $langs->trans($this->statuts_short[$status]);
+            return $langs->transnoentities($this->statuts_short[$status]);
 
         if ($mode == 2)
-            return img_picto($langs->trans($this->statuts_short[$status]), $this->statuts_logo[$status]).' '.$langs->trans($this->statuts_short[$status]);
+            return img_picto($langs->transnoentities($this->statuts_short[$status]), $this->statuts_logo[$status]).' '.$langs->transnoentities($this->statuts_short[$status]);
 
         if ($mode == 3)
-            return img_picto($langs->trans($this->statuts_short[$status]), $this->statuts_logo[$status]);
+            return img_picto($langs->transnoentities($this->statuts_short[$status]), $this->statuts_logo[$status]);
 
         if ($mode == 4)
-            return img_picto($langs->trans($this->statuts_short[$status]),$this->statuts_logo[$status]).' '.$langs->trans($this->statuts[$status]);
+            return img_picto($langs->transnoentities($this->statuts_short[$status]),$this->statuts_logo[$status]).' '.$langs->transnoentities($this->statuts[$status]);
 
         if ($mode == 5)
-            return '<span class="hideonsmartphone">'.$langs->trans($this->statuts_short[$status]).' </span>'.img_picto($langs->trans($this->statuts_short[$status]),$this->statuts_logo[$status]);
+            return '<span class="hideonsmartphone">'.$langs->transnoentities($this->statuts_short[$status]).' </span>'.img_picto($langs->transnoentities($this->statuts_short[$status]),$this->statuts_logo[$status]);
 
     }