Skip to content

Commit

Permalink
fix: default parameters for query debug call
Browse files Browse the repository at this point in the history
  • Loading branch information
kpicaza committed Mar 14, 2022
1 parent 7ef1997 commit f867a2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Sifo/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ public function __call( $method, $args ) //call adodb methods
$method,
$read_operation,
isset( $error ) ? $error : null,
$args[0] ?? null,
$args[1] ?? null
$args[0] ?? '',
$args[1] ?? []
);

// Reset queries in master flag:
Expand Down

0 comments on commit f867a2e

Please sign in to comment.