diff --git a/htdocs/commande/index.php b/htdocs/commande/index.php
index 6f2c31d13e0..9ea29fa8d8f 100644
--- a/htdocs/commande/index.php
+++ b/htdocs/commande/index.php
@@ -96,7 +96,7 @@ if ( $db->query($sql) )
$var=!$var;
$obj = $db->fetch_object();
print "
";
- print '| ';
+ print ' | ';
print "rowid."\">".img_object($langs->trans("ShowOrder"),"order").' '.$obj->ref." | ";
print ''.img_object($langs->trans("ShowCompany"),"company").' '.dolibarr_trunc($obj->nom,24).' |
';
$i++;
@@ -133,7 +133,7 @@ if ( $db->query($sql) )
$var=!$var;
$obj = $db->fetch_object();
print "";
- print '| ';
+ print ' | ';
$commandestatic->id=$obj->rowid;
$commandestatic->ref=$obj->ref;
diff --git a/htdocs/contact/index.php b/htdocs/contact/index.php
index 07ad181b931..2ad3b5b4d39 100644
--- a/htdocs/contact/index.php
+++ b/htdocs/contact/index.php
@@ -192,7 +192,7 @@ if ($result)
// Ligne des titres
print ' |
';
- print_liste_field_titre($langs->trans("Lastname"),"index.php","p.name", $begin, "&type=$type&view=$view&search_nom=$search_nom&search_prenom=$search_prenom&search_societe=$search_societe&search_email=$search_email", "", $sortfield);
+ print_liste_field_titre($langs->trans("Lastname"),"index.php","p.name", $begin, "&type=$type&view=$view&search_nom=$search_nom&search_prenom=$search_prenom&search_societe=$search_societe&search_email=$search_email", "colspan=\"2\"", $sortfield);
print_liste_field_titre($langs->trans("Firstname"),"index.php","p.firstname", $begin, "&type=$type&view=$view&search_nom=$search_nom&search_prenom=$search_prenom&search_societe=$search_societe&search_email=$search_email", "", $sortfield);
print_liste_field_titre($langs->trans("Company"),"index.php","s.nom", $begin, "&type=$type&view=$view&search_nom=$search_nom&search_prenom=$search_prenom&search_societe=$search_societe&search_email=$search_email", "", $sortfield);
print '| '.$langs->trans("Phone").' | ';
@@ -211,7 +211,7 @@ if ($result)
// Ligne des champs de filtres
print '
';
- print '| ';
+ print ' | ';
print '';
print ' | ';
print '';
|