diff --git a/htdocs/societe/list.php b/htdocs/societe/list.php
index 8b2236cd484..000fda921ed 100644
--- a/htdocs/societe/list.php
+++ b/htdocs/societe/list.php
@@ -1001,12 +1001,12 @@ print '
';
if (!empty($arrayfields['s.rowid']['checked'])) {
- print '| ';
+ print ' | ';
print '';
print ' | ';
}
if (!empty($arrayfields['s.nom']['checked'])) {
- print '';
+ print ' | ';
if (!empty($search_nom_only) && empty($search_nom)) {
$search_nom = $search_nom_only;
}
@@ -1237,10 +1237,10 @@ print ' | ';
print "\n";
print '';
if (!empty($arrayfields['s.rowid']['checked'])) {
- print_liste_field_titre($arrayfields['s.rowid']['label'], $_SERVER["PHP_SELF"], "s.rowid", "", $param, "", $sortfield, $sortorder);
+ print_liste_field_titre($arrayfields['s.rowid']['label'], $_SERVER["PHP_SELF"], "s.rowid", "", $param, ' data-key="id"', $sortfield, $sortorder);
}
if (!empty($arrayfields['s.nom']['checked'])) {
- print_liste_field_titre($arrayfields['s.nom']['label'], $_SERVER["PHP_SELF"], "s.nom", "", $param, "", $sortfield, $sortorder);
+ print_liste_field_titre($arrayfields['s.nom']['label'], $_SERVER["PHP_SELF"], "s.nom", "", $param,' data-key="ref"', $sortfield, $sortorder);
}
if (!empty($arrayfields['s.name_alias']['checked'])) {
print_liste_field_titre($arrayfields['s.name_alias']['label'], $_SERVER["PHP_SELF"], "s.name_alias", "", $param, "", $sortfield, $sortorder);
@@ -1387,7 +1387,7 @@ while ($i < min($num, $limit)) {
}
print '>';
if (!empty($arrayfields['s.rowid']['checked'])) {
- print '| ';
+ print ' | ';
print $obj->rowid;
print " | \n";
if (!$i) {
@@ -1399,7 +1399,7 @@ while ($i < min($num, $limit)) {
if (!empty($arrayfields['s.name_alias']['checked'])) {
$companystatic->name_alias = '';
}
- print 'global->MAIN_SOCIETE_SHOW_COMPLETE_NAME) ? ' class="tdoverflowmax200"' : '').'>';
+ print ' | global->MAIN_SOCIETE_SHOW_COMPLETE_NAME) ? ' class="tdoverflowmax200"' : '').' data-key="ref">';
if ($contextpage == 'poslist') {
print $obj->name;
} else {
|