X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmails%2Fbonus_mails.php;h=44ab9f571716d087775ad4a43df26278caf1ee1e;hb=700bc24c3ab00d51273e93cdc816e177bac34aa5;hp=e265e53f78de57d08509dbc830c66bc9880786a9;hpb=75ad748a68473ace540251427a74fb781b1145e9;p=mailer.git diff --git a/inc/mails/bonus_mails.php b/inc/mails/bonus_mails.php index e265e53f78..44ab9f5717 100644 --- a/inc/mails/bonus_mails.php +++ b/inc/mails/bonus_mails.php @@ -47,15 +47,15 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) if ($CSS == 1) return; // Create timemark from saved month -$mark = mktime(0, 0, 0, $CONFIG['bonus_month'], date("d", time()), date("Y", time())); +$mark = mktime(0, 0, 0, $_CONFIG['last_month'], date("d", time()), date('Y', time())); $SQL = ""; $MODE = ""; // Shall I sent activation or deactivation mail? $SQL = "SELECT userid, email FROM "._MYSQL_PREFIX."_user_data WHERE (bonus_ral_notify "; -switch ($CONFIG['bonus_active']) +switch ($_CONFIG['bonus_active']) { -case "Y": // Active rallye is activated - if ($CONFIG['bonus_en_notify'] == "Y") +case 'Y': // Active rallye is activated + if ($_CONFIG['bonus_en_notify'] == "Y") { // Okay, let's check for member accounts $SQL .= "= 0 OR (bonus_ral_notify > 0 AND bonus_ral_en_notify < bonus_ral_di_notify)"; @@ -68,8 +68,8 @@ case "Y": // Active rallye is activated } break; -case "N": // Active rallye is deactivated - if ($CONFIG['bonus_di_notify'] == "Y") +case 'N': // Active rallye is deactivated + if ($_CONFIG['bonus_di_notify'] == "Y") { // Okay, let's check for member accounts $SQL .= " > 0 AND bonus_ral_di_notify < bonus_ral_en_notify"; @@ -89,7 +89,7 @@ if (!empty($SQL)) $SQL .= ") AND status='CONFIRMED' ORDER BY last_online ASC"; // Normal notification mails or bonus mails? - $MAIL_MODE = (($CONFIG['bonus_notify_points'] > 0) && ($MODE == "en") && (EXT_IS_ACTIVE("bonus"))); + $MAIL_MODE = (($_CONFIG['bonus_notify_points'] > 0) && ($MODE == "en") && (EXT_IS_ACTIVE("bonus"))); // Generate subject line $eval = "\$SUBJECT = BONUS_RALLYE_".strtoupper($MODE)."_NOTIFY;"; @@ -108,7 +108,7 @@ if (!empty($SQL)) { // Update account $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data -SET bonus_ral_notify='%s', bonus_ral_%s_notify='%s' WHERE userid=%d LIMIT 1", +SET bonus_ral_notify='%s', bonus_ral_%s_notify='%s' WHERE userid=%s LIMIT 1", array(time(), $MODE, time(), $uid), __FILE__, __LINE__); // Load email template and send it to the user! @@ -137,8 +137,8 @@ VALUES ('%s', '%s', '%s', '%s', '%s', 'NEW', UNIX_TIMESTAMP(), '%s', '%s', '%s', $SUBJECT, $MSG, $RECEIVER, - $CONFIG['bonus_notify_points'], - $CONFIG['bonus_notify_wait'], + $_CONFIG['bonus_notify_points'], + $_CONFIG['bonus_notify_wait'], URL."/modules.php?module=index&what=login", 0, SELECTION_COUNT(explode(";", $RECEIVER)),