diff options
author | friendica <info@friendica.com> | 2012-03-29 16:01:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-29 16:01:44 -0700 |
commit | 5921dc6f1679afdcc0551da248f94d24db9ed360 (patch) | |
tree | 328215df9dbfe0b0fe8468331d5c0cf4eb0c7d21 /include/dba.php | |
parent | e935b3a2253e2c1078ebecb7b9784029c94fb344 (diff) | |
download | volse-hubzilla-5921dc6f1679afdcc0551da248f94d24db9ed360.tar.gz volse-hubzilla-5921dc6f1679afdcc0551da248f94d24db9ed360.tar.bz2 volse-hubzilla-5921dc6f1679afdcc0551da248f94d24db9ed360.zip |
typo in function name
Diffstat (limited to 'include/dba.php')
-rwxr-xr-x | include/dba.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/dba.php b/include/dba.php index 138e82b58..76cc0bc7b 100755 --- a/include/dba.php +++ b/include/dba.php @@ -209,9 +209,8 @@ function q($sql) { if($db && $db->connected) { $stmt = vsprintf($sql,$args); if($stmt === false) - logger('dba: vsprintf error: ' . print_r(debug_bracktrace(),true)); - $ret = $db->q($stmt); - return $ret; + logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true)); + return $db->q($stmt); } /** |