Fix bad order

This commit is contained in:
Laurent Destailleur 2015-02-07 03:29:33 +01:00
parent 53453a63f5
commit 7cc9a09f99

View File

@ -770,7 +770,7 @@ class Project extends CommonObject
if ($statut == 1)
return $langs->trans($this->statuts_short[$statut]) . ' ' . img_picto($langs->trans($this->statuts_short[$statut]), 'statut4');
if ($statut == 2)
return img_picto($langs->trans($this->statuts_short[$statut]), 'statut6') . ' ' . $langs->trans($this->statuts_short[$statut]);
return $langs->trans($this->statuts_short[$statut]) . ' ' . img_picto($langs->trans($this->statuts_short[$statut]), 'statut6');
}
}