Skip to content

Commit

Permalink
Fix: Filter on statut was lost
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Feb 23, 2015
1 parent d3a79c8 commit 4128c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/fourn/commande/list.php
Expand Up @@ -43,7 +43,7 @@
$search_user=GETPOST('search_user');
$search_ttc=GETPOST('search_ttc');
$sall=GETPOST('search_all');
$search_status=GETPOST('search_status','int');
$search_status=(GETPOST('search_status','int')!=''?GETPOST('search_status','int'):GETPOST('statut','int'));

$page = GETPOST('page','int');
$socid = GETPOST('socid','int');
Expand Down

0 comments on commit 4128c86

Please sign in to comment.