Skip to content

Commit

Permalink
FIX wrong GETPOST check
Browse files Browse the repository at this point in the history
  • Loading branch information
hregis committed Mar 4, 2024
1 parent 31ba3a3 commit eccb0ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/product/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
$search_barcode = GETPOST("search_barcode", 'alpha');
$search_label = GETPOST("search_label", 'alpha');
$search_default_workstation = GETPOST("search_default_workstation", 'alpha');
$search_type = GETPOSTINT("search_type");
$search_type = GETPOST("search_type", "aZ09");
$search_vatrate = GETPOST("search_vatrate", 'alpha');
$searchCategoryProductOperator = 0;
if (GETPOSTISSET('formfilteraction')) {
Expand Down

0 comments on commit eccb0ad

Please sign in to comment.