diff --git a/htdocs/contrat/services.php b/htdocs/contrat/services.php
index 359b1889fec..1198a5b4cb7 100644
--- a/htdocs/contrat/services.php
+++ b/htdocs/contrat/services.php
@@ -191,7 +191,10 @@ if ($resql)
print dolibarr_trunc($obj->description,20);
}
print '';
- print '
'.img_object($langs->trans("ShowCompany"),"company").' '.dolibarr_trunc($obj->nom,44).' | ';
+
+ // Third party
+ print ''.img_object($langs->trans("ShowCompany"),"company").' '.dolibarr_trunc($obj->nom,40).' | ';
+
// Date debut
if ($mode == "0") {
print '';
@@ -209,7 +212,7 @@ if ($resql)
if ($obj->date_fin_validite && $obj->date_fin_validite < (time() - $conf->contrat->services->expires->warning_delay) && $obj->statut < 5) print img_warning($langs->trans("Late"));
else print ' ';
print ' | ';
- print '';
+ print ' | ';
if ($obj->cstatut == 0)
{
print $contractstatic->LibStatut(0,5);
|