Skip to content
Snippets Groups Projects
Commit 4128c860 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Filter on statut was lost

parent d3a79c87
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ $search_company=GETPOST('search_company'); ...@@ -43,7 +43,7 @@ $search_company=GETPOST('search_company');
$search_user=GETPOST('search_user'); $search_user=GETPOST('search_user');
$search_ttc=GETPOST('search_ttc'); $search_ttc=GETPOST('search_ttc');
$sall=GETPOST('search_all'); $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'); $page = GETPOST('page','int');
$socid = GETPOST('socid','int'); $socid = GETPOST('socid','int');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment