diff --git a/htdocs/commande/list.php b/htdocs/commande/list.php
index 208889ba1a2..31d9ac1667f 100644
--- a/htdocs/commande/list.php
+++ b/htdocs/commande/list.php
@@ -1466,8 +1466,8 @@ if ($resql) {
}
// Parent company
if (!empty($arrayfields['s2.nom']['checked'])) {
- print '
';
- print '';
+ print ' | ';
+ print '';
print ' | ';
}
// Town
@@ -1727,7 +1727,7 @@ if ($resql) {
print_liste_field_titre($arrayfields['s.name_alias']['label'], $_SERVER["PHP_SELF"], 's.name_alias', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['s2.nom']['checked'])) {
- print_liste_field_titre($arrayfields['s2.nom']['label'], $_SERVER['PHP_SELF'], 's2.nom', '', $param, '', $sortfield, $sortorder, 'center ');
+ print_liste_field_titre($arrayfields['s2.nom']['label'], $_SERVER['PHP_SELF'], 's2.nom', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['s.town']['checked'])) {
print_liste_field_titre($arrayfields['s.town']['label'], $_SERVER["PHP_SELF"], 's.town', '', $param, '', $sortfield, $sortorder);
@@ -2032,7 +2032,7 @@ if ($resql) {
// Parent company
if (!empty($arrayfields['s2.nom']['checked'])) {
- print '';
+ print ' | ';
if ($obj->fk_parent > 0) {
if (!isset($company_url_list[$obj->fk_parent])) {
$companyparent = new Societe($db);
|