X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=71fec0aa33b6023a2438fdcedd0f0a3b05d06d61;hb=95b85ceebca7c97bdd966b1cc94234adfd1abd52;hp=f6bd9f340bca07b3615d4c5c1284a4117442beb0;hpb=4d6226782aa4ba157dca8c3891412ba50159481f;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index f6bd9f340b..71fec0aa33 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -32,47 +32,39 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } -function AUTOPURGE_ADD_POINTS($uid, $points) -{ - global $jackpot; +function AUTOPURGE_ADD_POINTS($uid, $points) { // Check if he has locked points or not - $result = SQL_QUERY_ESC("SELECT ref_payout FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1", - array(bigintval($uid)), __FILE__, __LINE__); + $result = SQL_QUERY_ESC("SELECT ref_payout FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", + array(bigintval($uid)), __FUNCTION__, __LINE__); list($payout) = SQL_FETCHROW($result); SQL_FREERESULT($result); - if (($payout > 0) && (!empty($payout))) - { + + if (($payout > 0) && (!empty($payout))) { // Yes, he has. $target = "locked_points"; - } - elseif ($payout == "0") - { + } elseif ($payout == "0") { // No, he has not $target = "points"; } + // Add points... - if (empty($payout)) - { + if (empty($payout)) { // ... to jackpot account ADD_JACKPOT($points); - if (empty($jackpot)) $jackpot = "0"; + if (empty($jackpot)) $jackpot = 0; $jackpot += $points; - } - else - { + } else { // .. to user's account - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET %s=%s+%s WHERE userid=%d AND ref_depth=0 LIMIT 1", - array($target, $target, $points, bigintval($uid)), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET %s=%s+%s WHERE userid=%s AND ref_depth=0 LIMIT 1", + array($target, $target, $points, bigintval($uid)), __FUNCTION__, __LINE__); // Update mediadata as well - if ((GET_EXT_VERSION("mediadata") >= "0.0.4") && ($target == "points")) - { + if ((GET_EXT_VERSION("mediadata") >= "0.0.4") && ($target == "points")) { // Update database MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points); }