wernis extension is now alpha code (only listing in admin area is missing), naming...
[mailer.git] / inc / mails / bonus_mails.php
index e265e53f78de57d08509dbc830c66bc9880786a9..673681010457c5346a55a77e919f7f517974bab5 100644 (file)
@@ -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['bonus_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;";
@@ -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)),