X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=76be497ee5ad86b9c2c499907b3aa116d2a10ac9;hb=9bc2a494fae1a98f0873a6f3bd8c878b09124b9f;hp=71fec0aa33b6023a2438fdcedd0f0a3b05d06d61;hpb=b8c86fa12322603c24a88ea2b0fd3dbeba612752;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index 71fec0aa33..76be497ee5 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -1,7 +1,7 @@ 0) && (!empty($payout))) { - // Yes, he has. - $target = "locked_points"; - } elseif ($payout == "0") { - // No, he has not - $target = "points"; - } - - // Add points... - if (empty($payout)) { - // ... to jackpot account - ADD_JACKPOT($points); - if (empty($jackpot)) $jackpot = 0; - $jackpot += $points; - } else { - // .. to user's account - 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")) { - // Update database - MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points); - } +// Add points in autopurge-mode +function addPointsAutoPurge ($userid, $points) { + // Add points over the ref system directly now + addPointsDirectly('autopurge_add', $userid, $points); - // Send out mail to user - $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", TRANSLATE_COMMA($points), $uid); - SEND_EMAIL($uid, AUTOPURGE_MEMBER_SUBJECT, $msg); - } + // Send out mail to user + $message = loadEmailTemplate('member_autopurge_points', array('points' => $points), $userid); + sendEmail($userid, '{--AUTOPURGE_MEMBER_SUBJECT--}', $message); } -// +// [EOF] ?>