More double- to single-quotes rewritten
[mailer.git] / inc / mails / beg_mails.php
index c8d1c964e8001a137c2e32b785f801a0bebca9fa..59f16516a34c1d27e48ea365422ecf47fd9257dd 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 (beg_ral_notify ";
@@ -60,7 +60,7 @@ case 'Y': // Begging rallye is activated
        {
                // Okay, let's check for member accounts
                $sql .= "= 0 OR (beg_ral_notify > 0 AND beg_ral_en_notify < beg_ral_di_notify)";
-               $MODE = "en";
+               $mode = "en";
        }
         else
        {
@@ -74,7 +74,7 @@ case 'N': // Begging rallye is deactivated
        {
                // Okay, let's check for member accounts
                $sql .= " > 0 AND beg_ral_di_notify < beg_ral_en_notify";
-               $MODE = "di";
+               $mode = "di";
        }
         else
        {
@@ -107,10 +107,10 @@ if (!empty($sql)) {
        $result_main = SQL_QUERY($sql, __FILE__, __LINE__);
        if (SQL_NUMROWS($result_main) > 0) {
                // Normal notification mails or bonus mails?
-               $sentBonusMails = ((getConfig('beg_notify_bonus') > 0) && ($MODE == "en") && (EXT_IS_ACTIVE('bonus')));
+               $sentBonusMails = ((getConfig('beg_notify_bonus') > 0) && ($mode == "en") && (EXT_IS_ACTIVE('bonus')));
 
                // Generate subject line
-               $subject = constant('BEG_RALLYE_'.strtoupper($MODE).'_NOTIFY');
+               $subject = constant('BEG_RALLYE_'.strtoupper($mode).'_NOTIFY');
 
                // Load message body for bonus mails
                $message = LOAD_EMAIL_TEMPLATE("beg_en_notify_body", '', "{PER}uid{PER}");
@@ -123,7 +123,7 @@ if (!empty($sql)) {
 SET beg_ral_notify='%s', beg_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) {
@@ -131,7 +131,7 @@ LIMIT 1",
                                $UIDs[] = $content['userid'];
                        } else {
                                // Send normal notification mail to the members
-                               $message = LOAD_EMAIL_TEMPLATE('beg_' . $MODE . '_notify', array(), $content['userid']);
+                               $message = LOAD_EMAIL_TEMPLATE('beg_' . $mode . '_notify', array(), $content['userid']);
                                SEND_EMAIL($content['email'], $subject, $message);
                        }
                } // END - while