Minor - Small efficiency improvement using intval() instead of Security::remove_XSS()

pull/2487/head
Yannick Warnier 8 years ago
parent 363e628e37
commit 6f47c441db
  1. 2
      main/document/download.php

@ -56,7 +56,7 @@ if (substr($refer_script, 0, 15) == '/fillsurvey.php') {
$doc_url = substr($doc_url, 0, $dul);
}
// Group folder?
$gid_req = ($_GET['gidReq']) ? '&gidReq='.Security::remove_XSS($_GET['gidReq']) : '';
$gid_req = ($_GET['gidReq']) ? '&gidReq='.intval($_GET['gidReq']) : '';
// Create the path
$document_explorer = api_get_path(WEB_CODE_PATH).'document/document.php?curdirpath='.urlencode($doc_url).'&'.api_get_cidreq_params(Security::remove_XSS($_GET['cidReq'], 0, $gid_req));
// Redirect

Loading…
Cancel
Save