diff options
Diffstat (limited to 'include/dba.php')
-rwxr-xr-x | include/dba.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/dba.php b/include/dba.php index 5beea7a3a..76cc0bc7b 100755 --- a/include/dba.php +++ b/include/dba.php @@ -207,8 +207,10 @@ function q($sql) { unset($args[0]); if($db && $db->connected) { - $ret = $db->q(vsprintf($sql,$args)); - return $ret; + $stmt = vsprintf($sql,$args); + if($stmt === false) + logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true)); + return $db->q($stmt); } /** |