Skip to content
Snippets Groups Projects
Commit c1b9878b authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: XSS injection

parent 61272f06
Branches
Tags
No related merge requests found
...@@ -40,7 +40,7 @@ $showbirthday = GETPOST("showbirthday","int")?GETPOST("showbirthday","int"):0; ...@@ -40,7 +40,7 @@ $showbirthday = GETPOST("showbirthday","int")?GETPOST("showbirthday","int"):0;
$sortfield = GETPOST("sortfield"); $sortfield = GETPOST("sortfield");
$sortorder = GETPOST("sortorder"); $sortorder = GETPOST("sortorder");
$page = GETPOST("page","int"); $page = GETPOST("page");
if ($page == -1) { $page = 0 ; } if ($page == -1) { $page = 0 ; }
$limit = $conf->liste_limit; $limit = $conf->liste_limit;
$offset = $limit * $page ; $offset = $limit * $page ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment