Fix bad order

This commit is contained in:
Laurent Destailleur 2015-02-07 03:29:33 +01:00
parent 011d39105d
commit 7738478564

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');
}
}