Bug fix for DB\IO param prepare call with wrong param array check
The global param array in the class instead of the param array passed to the method was checked
This commit is contained in:
@@ -1186,7 +1186,7 @@ class IO
|
||||
*/
|
||||
private function __dbDebugPrepareContext(string $query, array $params = []): array
|
||||
{
|
||||
if ($this->params === []) {
|
||||
if ($params === []) {
|
||||
return [];
|
||||
}
|
||||
$error_data = [
|
||||
|
||||
Reference in New Issue
Block a user