]> git.mxchange.org Git - mailer.git/blobdiff - inc/mails/bonus_mails.php
More rewrites from double- to single-quote
[mailer.git] / inc / mails / bonus_mails.php
index 6104e5597fb5804ce66d314a15bcd9d21970dadf..041fd602f89d3a493e073d92fa4ba43867d36f3e 100644 (file)
@@ -89,7 +89,7 @@ if (!empty($sql)) {
        $subject = constant('BONUS_RALLYE_'.strtoupper($MODE).'_NOTIFY');
 
        // Load message body for bonus mails
-       $message = LOAD_EMAIL_TEMPLATE("bonus_en_notify_body", '', "{PER}uid{PER}");
+       $message = LOAD_EMAIL_TEMPLATE('bonus_en_notify_body', '', '{PER}uid{PER}');
        $RECEIVER = ''; $UIDs = array();
 
        // Check for accounts to be notified
@@ -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
@@ -121,7 +121,7 @@ LIMIT 1",
                        $RECEIVER = implode(';', $UIDs);
 
                        // Prepare URL
-                       $URL = "modules.php?module=index&what=login";
+                       $URL = 'modules.php?module=index&what=login';
 
                        // Insert mail
                        ADD_BONUS_MAIL_TO_QUEUE($subject, $message, $RECEIVER, getConfig('bonus_notify_points'), getConfig('bonus_notify_wait'), $URL, 0, 'normal', SQL_NUMROWS($result_main));