]> git.mxchange.org Git - mailer.git/blobdiff - inc/mails/bonus_mails.php
More double- to single-quotes rewritten
[mailer.git] / inc / mails / bonus_mails.php
index 041fd602f89d3a493e073d92fa4ba43867d36f3e..baddc4ad7a4340aeab1a56cb22151d1455bc7fa0 100644 (file)
@@ -49,7 +49,7 @@ if ($GLOBALS['output_mode'] == 1) return;
 
 // Create timemark from saved month
 $mark = mktime(0, 0, 0, getConfig('last_month'), date("d", time()), date('Y', time()));
-$sql = ''; $MODE = '';
+$sql = ''; $mode = '';
 
 // Shall I sent activation or deactivation mail?
 $sql = "SELECT userid, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE (bonus_ral_notify ";
@@ -59,7 +59,7 @@ case 'Y': // Active rallye is activated
        if (getConfig('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)";
-               $MODE = "en";
+               $mode = "en";
        } else {
                // Do not notify!
                $sql = '';
@@ -70,7 +70,7 @@ case 'N': // Active rallye is deactivated
        if (getConfig('bonus_di_notify') == 'Y') {
                // Okay, let's check for member accounts
                $sql .= " > 0 AND bonus_ral_di_notify < bonus_ral_en_notify";
-               $MODE = "di";
+               $mode = "di";
        } else {
                // Do not notify!
                $sql = '';
@@ -83,10 +83,10 @@ if (!empty($sql)) {
        $sql .= ") AND `status`='CONFIRMED' ORDER BY last_online ASC";
 
        // Normal notification mails or bonus mails?
-       $sentBonusMails = ((getConfig('bonus_notify_points') > 0) && ($MODE == "en") && (EXT_IS_ACTIVE('bonus')));
+       $sentBonusMails = ((getConfig('bonus_notify_points') > 0) && ($mode == "en") && (EXT_IS_ACTIVE('bonus')));
 
        // Generate subject line
-       $subject = constant('BONUS_RALLYE_'.strtoupper($MODE).'_NOTIFY');
+       $subject = constant('BONUS_RALLYE_'.strtoupper($mode).'_NOTIFY');
 
        // Load message body for bonus mails
        $message = LOAD_EMAIL_TEMPLATE('bonus_en_notify_body', '', '{PER}uid{PER}');
@@ -102,7 +102,7 @@ if (!empty($sql)) {
 SET bonus_ral_notify='%s', bonus_ral_%s_notify='%s'
 WHERE userid=%s
 LIMIT 1",
-                               array(time(), $MODE, time(), $content['userid']), __FILE__, __LINE__);
+                               array(time(), $mode, time(), $content['userid']), __FILE__, __LINE__);
 
                        // Load email template and send it to the user!
                        if ($sentBonusMails === true) {
@@ -110,7 +110,7 @@ LIMIT 1",
                                $UIDs[] = $content['userid'];
                        } else {
                                // Send normal notification mail to the members
-                               $message = LOAD_EMAIL_TEMPLATE('bonus_' . $MODE . '_notify', array(), $content['userid']);
+                               $message = LOAD_EMAIL_TEMPLATE('bonus_' . $mode . '_notify', array(), $content['userid']);
                                SEND_EMAIL($content['email'], $subject, $message);
                        }
                } // END - while