]> git.mxchange.org Git - friendica.git/commitdiff
typo in function name
authorfriendica <info@friendica.com>
Thu, 29 Mar 2012 23:01:44 +0000 (16:01 -0700)
committerfriendica <info@friendica.com>
Thu, 29 Mar 2012 23:01:44 +0000 (16:01 -0700)
boot.php
include/dba.php

index b02e686bad289c4f59b68067c6c3720cb5372f00..4a4adbbc82110e3a0ce1306077180223bbd25e74 100755 (executable)
--- a/boot.php
+++ b/boot.php
@@ -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      );
 
index 138e82b58bf1e7431c965d78a7fc1224f78215a6..76cc0bc7b91ff74f77f743eb720ee96f66d81c8a 100755 (executable)
@@ -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);
        }
 
        /**