From: Roland Häder Date: Tue, 10 Mar 2009 21:59:25 +0000 (+0000) Subject: Typo fixed X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=5a037072da9ffa803deffabc4c8b2bafe7479f7d Typo fixed --- diff --git a/inc/mysql-manager.php b/inc/mysql-manager.php index fd67f992d2..57ca77e32a 100644 --- a/inc/mysql-manager.php +++ b/inc/mysql-manager.php @@ -1065,11 +1065,11 @@ function GET_TOTAL_DATA ($search, $tableName, $lookFor = "id", $whereStatement = // Count or sum whole table? if ($countRows === true) { // Count whole table - $result = SQL_QEURY_ESC("SELECT COUNT(`%s`) FROM `{!_MYSQL_PREFIX!}_%s`".$add, + $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) FROM `{!_MYSQL_PREFIX!}_%s`".$add, array($lookFor, $tableName), __FUNCTION__, __LINE__); } else { // Sum whole table - $result = SQL_QEURY_ESC("SELECT SUM(`%s`) FROM `{!_MYSQL_PREFIX!}_%s`".$add, + $result = SQL_QUERY_ESC("SELECT SUM(`%s`) FROM `{!_MYSQL_PREFIX!}_%s`".$add, array($lookFor, $tableName), __FUNCTION__, __LINE__); } } elseif (($countRows === true) || ($lookFor == "userid")) {