mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-07 00:46:59 +01:00
* [FIX] Fixed wrong behavior when analyzing an array from a request.
* [ADD] Added SQL logging when debug is enabled.
This commit is contained in:
@@ -336,7 +336,7 @@ class Request
|
||||
}
|
||||
|
||||
return array_map(function ($value) {
|
||||
return is_numeric($value) ? $this->analyzeInt($value) : $this->analyzeString($value);
|
||||
return is_numeric($value) ? Filter::getInt($value) : Filter::getString($value);
|
||||
}, $this->params->get($param));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user