diff --git a/htdocs/comm/clients.php b/htdocs/comm/clients.php index 6d12fb5be85..f09dd0ecbb4 100644 --- a/htdocs/comm/clients.php +++ b/htdocs/comm/clients.php @@ -76,11 +76,11 @@ if ($socname) if ($sortorder == "") { - $sortorder="DESC"; + $sortorder="ASC"; } if ($sortfield == "") { - $sortfield="s.datec"; + $sortfield="s.nom"; } $sql .= " ORDER BY $sortfield $sortorder " . $db->plimit($conf->liste_limit +1, $offset); @@ -93,27 +93,8 @@ if ($result) llxHeader(); - print_barre_liste("Liste des clients", $page, "clients.php","&begin=$begin",$sortfield,$sortorder,"",$num); - print '
'; - - print "| *\n| "; - for ($ij = 65 ; $ij < 91; $ij++) { - print ""; - - if ($begin == chr($ij) ) - { - print ">" . chr($ij) . "<" ; - } - else - { - print chr($ij); - } - print " | "; - } - print "
"; - $i = 0; $addu = "&page=$page&begin=$begin&search_nom=".$_GET["search_nom"];