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 2c183fe commit 54d67de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/accountancy/bookkeeping/balance.php
Expand Up @@ -38,7 +38,7 @@
// Load translation files required by the page
$langs->loadLangs(array("accountancy"));

$page = GETPOST("page");
$page = GETPOST("page", 'int');
$sortorder = GETPOST("sortorder", 'alpha');
$sortfield = GETPOST("sortfield", 'alpha');
$action = GETPOST('action', 'aZ09');
Expand Down

0 comments on commit 54d67de

Please sign in to comment.