Merge pull request #7758 from atm-maxime/fix_search_service

Fix : type was forced to 0 so service are not in the list
This commit is contained in:
Laurent Destailleur 2017-11-05 18:30:20 +01:00 committed by GitHub
commit d453961afc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,7 @@ $search_tobatch = GETPOST("search_tobatch",'int');
$search_accountancy_code_sell = GETPOST("search_accountancy_code_sell",'alpha');
$search_accountancy_code_buy = GETPOST("search_accountancy_code_buy",'alpha');
$optioncss = GETPOST('optioncss','alpha');
$type=(int) GETPOST("type","int");
$type=GETPOST("type","int");
//Show/hide child products. Hidden by default
if (!$_POST) {