From: quix0r Date: Fri, 30 Oct 2009 12:06:46 +0000 (+0000) Subject: SQL fix #3 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=917bee7c93090e0322d06969fe0fb1325d6afc87;p=mailer.git SQL fix #3 --- diff --git a/inc/libs/refback_functions.php b/inc/libs/refback_functions.php index 3d6fd91226..820be36d6b 100644 --- a/inc/libs/refback_functions.php +++ b/inc/libs/refback_functions.php @@ -152,10 +152,10 @@ function getArrayFromRefbackLevel ($rid, $level) { FROM `{?_MYSQL_PREFIX?}_user_refs` WHERE - `refid=`%s AND `level`=%s + `refid`=%s AND `level`=%s ORDER BY `userid` ASC", - array($rid,$level), __FUNCTION__, __LINE__); + array($rid, $level), __FUNCTION__, __LINE__); // Entries found? //* DEBUG: */ print(__FUNCTION__."(".__LINE__."):numRows=".SQL_NUMROWS($result)."
");