Skip to content

Commit

Permalink
fix : invoid sql injection
Browse files Browse the repository at this point in the history
  • Loading branch information
grandoc committed Nov 21, 2019
1 parent f7319ae commit 2c183fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/commande/list.php
Expand Up @@ -80,7 +80,7 @@
$search_categ_cus = trim(GETPOST("search_categ_cus", 'int'));
$optioncss = GETPOST('optioncss', 'alpha');
$billed = GETPOST('billed', 'int');
$viewstatut = GETPOST('viewstatut');
$viewstatut = GETPOST('viewstatut', 'int');
$search_btn = GETPOST('button_search', 'alpha');
$search_remove_btn = GETPOST('button_removefilter', 'alpha');
$search_project_ref = GETPOST('search_project_ref', 'alpha');
Expand Down

0 comments on commit 2c183fe

Please sign in to comment.