From ad24a14cb831dcc31e088b9e9f022df5e9f49281 Mon Sep 17 00:00:00 2001 From: Florian Schaal <florian@schaal-24.de> Date: Fri, 27 Dec 2013 14:56:13 -0500 Subject: [PATCH] changed hard-coded conversion to formatBytes for mail-traffic stats --- interface/lib/classes/db_mysql.inc.php | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/interface/lib/classes/db_mysql.inc.php b/interface/lib/classes/db_mysql.inc.php index b18d583..f0e7a60 100644 --- a/interface/lib/classes/db_mysql.inc.php +++ b/interface/lib/classes/db_mysql.inc.php @@ -264,11 +264,11 @@ } public function queryOne($sQuery = '') { - return $this->query_one($sQuery); + return call_user_func_array(array(&$this, 'queryOneRecord'), func_get_args()); } public function query_one($sQuery = '') { - return $this->queryOneRecord($sQuery); + return call_user_func_array(array(&$this, 'queryOneRecord'), func_get_args()); } /** @@ -297,11 +297,11 @@ } public function queryAll($sQuery = '') { - return $this->queryAllRecords($sQuery); + return call_user_func_array(array(&$this, 'queryAllRecords'), func_get_args()); } public function query_all($sQuery = '') { - return $this->queryAllRecords($sQuery); + return call_user_func_array(array(&$this, 'queryAllRecords'), func_get_args()); } /** @@ -383,7 +383,7 @@ global $app; if(!is_string($sString) && !is_numeric($sString)) { $app->log('NON-String given in escape function! (' . gettype($sString) . ')', LOGLEVEL_INFO); - $sAddMsg = getDebugBacktrace(); + //$sAddMsg = getDebugBacktrace(); $app->log($sAddMsg, LOGLEVEL_DEBUG); $sString = ''; } @@ -414,7 +414,7 @@ $mysql_error = (is_object($this->_iConnId) ? mysqli_error($this->_iConnId) : mysqli_connect_error()); $mysql_errno = (is_object($this->_iConnId) ? mysqli_errno($this->_iConnId) : mysqli_connect_errno()); - $sAddMsg .= getDebugBacktrace(); + //$sAddMsg .= getDebugBacktrace(); if($this->show_error_messages && $conf['demo_mode'] === false) { echo $sErrormsg . $sAddMsg; -- Gitblit v1.9.1