Fix Request variable retrieval

- getSearch functions to properly retrieve HTTP vars.
- getVar() function calls replaced with getGet() or getPost()
- replaced TRUE/FALSE constants with true/false keywords
This commit is contained in:
objecttothis
2023-12-01 17:54:56 +04:00
committed by jekkos
parent 48c04417b8
commit 0754f2f6e6
16 changed files with 90 additions and 90 deletions

View File

@@ -83,7 +83,7 @@ class Secure_Controller extends BaseController
{
$result = true;
foreach($this->request->getVar(null, FILTER_SANITIZE_FULL_SPECIAL_CHARS) as $value)
foreach($this->request->getGet(null, FILTER_SANITIZE_FULL_SPECIAL_CHARS) as $value)
{
$result &= (int)parse_decimals($value);
}