X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-unlock_sponsor.php;h=812dca9103f1d49df253896cc51e4a229e4012a1;hp=98a72076ad5f4336ccc1ad4402fd682691a945cf;hb=524c58a61b0a074fed8d7c9dc2f9ddab7f653595;hpb=51749c437cc998e7bbc1e53506397de5ce17f5ef diff --git a/inc/modules/admin/what-unlock_sponsor.php b/inc/modules/admin/what-unlock_sponsor.php index 98a72076ad..812dca9103 100644 --- a/inc/modules/admin/what-unlock_sponsor.php +++ b/inc/modules/admin/what-unlock_sponsor.php @@ -97,9 +97,9 @@ ORDER BY sp.pay_name", WHERE id='%s' AND status='PENDING' LIMIT 1", array($id), __FILE__, __LINE__); - // Update, if applyable, referral count and points + // Update, if applyable, referal count and points if (($refid > 0) && ($refid != $id)) { - // Update referral account + // Update referal account $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET points_amount=points_amount+%s, ref_count=ref_count+1 WHERE id='%s' LIMIT 1", @@ -107,7 +107,7 @@ WHERE id='%s' LIMIT 1", // Whas that update fine? if (SQL_AFFECTEDROWS() == 1) { - // Load referral's data + // Load referal's data $result = SQL_QUERY_ESC("SELECT id, gender, surname, family, email, (points_amount - points_used) AS points, receive_warnings, ref_count AS refs FROM "._MYSQL_PREFIX."_sponsor_data @@ -122,7 +122,7 @@ WHERE id='%s' LIMIT 1", $REFERRAL['ref_points'] = TRANSLATE_COMMA($_CONFIG['sponsor_ref_points']); $REFERRAL['gender'] = TRANSLATE_GENDER($REFERRAL['gender']); - // Send notification to referral + // Send notification to referal $REF_MSG = LOAD_EMAIL_TEMPLATE("sponsor_ref_notify", $REFERRAL); SEND_EMAIL($REFERRAL['email'], SPONSOR_REF_NOTIFY_SUBJ, $REF_MSG); }