X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbeg_functions.php;h=b93c09d0aab997ec20f3ab2e12cee6d4b51ee2d6;hb=5feba25313d1ef15f35ef29c6b98ae7bc496afa5;hp=94fbd26d3488fd5951b5acf47f363bf0728bfab8;hpb=3c50057c4da8c632d1923d7879a2b870d1eb7155;p=mailer.git diff --git a/inc/libs/beg_functions.php b/inc/libs/beg_functions.php index 94fbd26d34..b93c09d0aa 100644 --- a/inc/libs/beg_functions.php +++ b/inc/libs/beg_functions.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -48,11 +48,11 @@ function addPointsBeg ($userid, $points) { // Is begging rallye active? if (isBegRallyeEnabled()) { // Add points to rallye account - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=`beg_points`+%s WHERE `userid`=%s LIMIT 1", + sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=`beg_points`+%s WHERE `userid`=%s LIMIT 1", array($points, $userid), __FUNCTION__, __LINE__); // We need to set $add here, two - $added = (!SQL_HASZEROAFFECTED()); + $added = (!ifSqlHasZeroAffectedRows()); } else { // Add points to account initReferralSystem(); @@ -60,7 +60,7 @@ function addPointsBeg ($userid, $points) { } // Subtract begged points from member account if the admin has selected one - if (($added === TRUE) && (isValidUserId(getBegUserid()))) { + if (($added === TRUE) && (isValidId(getBegUserid()))) { // Subtract from this account $added = ($added && subtractPoints('beg_payout', getBegUserid(), $points)); } // END - if