X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=8d7ace168ddca39794a3d5663facafa9c4b9ea18;hb=e2148142f8b1a8f40fd6e7ca32185569c5a9083e;hp=b0c8a2e38a258cbb452659f4cacc60d8979dfbe2;hpb=7b0f17cd637e388049d2167811e4332cec1e979b;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index b0c8a2e38a..8d7ace168d 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); - } - - // Send out mail to user - $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", translateComma($points), $uid); - sendEmail($uid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $msg); - } + // Send out mail to user + $message = loadEmailTemplate('member_autopurge_points', translateComma($points), $userid); + sendEmail($userid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $message); } -// +// [EOF] ?>