diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-29 20:16:49 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-29 20:16:49 -0400 |
commit | fe1e384a51e753baf2d80aaf35af7d0a3b4dfbeb (patch) | |
tree | 328215df9dbfe0b0fe8468331d5c0cf4eb0c7d21 | |
parent | e7b920c273efd8c6a70b90f701bd14f5c632d38f (diff) | |
parent | 5921dc6f1679afdcc0551da248f94d24db9ed360 (diff) | |
download | volse-hubzilla-fe1e384a51e753baf2d80aaf35af7d0a3b4dfbeb.tar.gz volse-hubzilla-fe1e384a51e753baf2d80aaf35af7d0a3b4dfbeb.tar.bz2 volse-hubzilla-fe1e384a51e753baf2d80aaf35af7d0a3b4dfbeb.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
typo in function name
* master:
-rwxr-xr-x | boot.php | 2 | ||||
-rwxr-xr-x | include/dba.php | 5 |
2 files changed, 3 insertions, 4 deletions
@@ -9,7 +9,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '2.3.1295' ); +define ( 'FRIENDICA_VERSION', '2.3.1296' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1133 ); 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); } /** |