A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / modules / member / what-unconfirmed.php
index 04b715934acfbc0ec2f0284ffe6363f8203ae31a..2c4f10bef5412746b29a2cb24fc5f2d4ca9152b7 100644 (file)
@@ -41,16 +41,16 @@ if (!defined('__SECURITY')) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 } elseif (!IS_MEMBER()) {
-       LOAD_URL("modules.php?module=index");
-} elseif ((!EXT_IS_ACTIVE("mailid")) && (!IS_ADMIN())) {
+       LOAD_URL('modules.php?module=index');
+} elseif ((!EXT_IS_ACTIVE('mailid')) && (!IS_ADMIN())) {
        LOAD_URL("modules.php?module=login");
 }
 
 // Add description as navigation point
-ADD_DESCR("member", __FILE__);
+ADD_DESCR('member', __FILE__);
 
 // Shall we display a mail?
-if ((REQUEST_ISSET_GET(('bonusid'))) && (EXT_IS_ACTIVE("bonus"))) {
+if ((REQUEST_ISSET_GET(('bonusid'))) && (EXT_IS_ACTIVE('bonus'))) {
        // Display bonus mail by loading it's full data
        $result_data = SQL_QUERY_ESC("SELECT id, subject, timestamp, cat_id, points, text, is_notify, data_type, time, url
 FROM `{!_MYSQL_PREFIX!}_bonus`
@@ -73,7 +73,7 @@ WHERE id=%s LIMIT 1",
 
        // Get timestamp from insert
        $content['user_status'] = sprintf(getMessage('MEMBER_MAIL_BONUS_CONFIRMED_ON'),
-               MAKE_DATETIME(USER_STATS_GET_TIMESTAMP("bonusid", $content['id']), "2")
+               MAKE_DATETIME(USER_STATS_GET_TIMESTAMP('bonusid', $content['id']), "2")
        );
 
        // Display it depending on mail (data) type
@@ -106,7 +106,7 @@ WHERE s.id=%s LIMIT 1",
 
        // Get timestamp from insert
        $content['user_status'] = sprintf(getMessage('MEMBER_MAIL_NORMAL_CONFIRMED_ON'),
-               MAKE_DATETIME(USER_STATS_GET_TIMESTAMP("mailid", $content['id']), "2")
+               MAKE_DATETIME(USER_STATS_GET_TIMESTAMP('mailid', $content['id']), "2")
        );
 
        // Display it depending on mail (data) type
@@ -116,7 +116,7 @@ WHERE s.id=%s LIMIT 1",
        SQL_FREERESULT($result_data);
 }
 
-if (EXT_IS_ACTIVE("bonus")) {
+if (EXT_IS_ACTIVE('bonus')) {
        // Load bonus ID
        $result = SQL_QUERY_ESC("SELECT stats_id, bonus_id, link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE userid=%s ORDER BY bonus_id DESC, stats_id DESC",
                array(getUserId()), __FILE__, __LINE__);
@@ -129,12 +129,12 @@ if (EXT_IS_ACTIVE("bonus")) {
 // Mails left for confirmation?
 if (SQL_NUMROWS($result) > 0) {
        // Please confirm these mails!
-       $sum = 0; $OUT = ""; $SW = 2;
+       $sum = 0; $OUT = ''; $SW = 2;
 
        // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
        while (list($id, $id2, $type) = SQL_FETCHROW($result)) {
                // Load data from stats table...
-               $cat = ""; $result_data = false;
+               $cat = ''; $result_data = false;
                switch ($type)
                {
                case "NORMAL":
@@ -145,13 +145,13 @@ ON s.pool_id=p.id
 WHERE s.id=%s
 LIMIT 1",
                                array(bigintval($id)), __FILE__, __LINE__);
-                       $type = "mailid"; $DATA = $id; $PROBLEM = getMessage('NORMAL_MAIL_PROBLEM');
+                       $type = 'mailid'; $DATA = $id; $PROBLEM = getMessage('NORMAL_MAIL_PROBLEM');
                        break;
 
                case "BONUS":
                        $result_data = SQL_QUERY_ESC("SELECT subject, timestamp, cat_id, points, 0 FROM `{!_MYSQL_PREFIX!}_bonus` WHERE id=%s LIMIT 1",
                         array(bigintval($id2)), __FILE__, __LINE__);
-                       $type = "bonusid"; $DATA = $id2; $PROBLEM = getMessage('BONUS_MAIL_PROBLEM');
+                       $type = 'bonusid'; $DATA = $id2; $PROBLEM = getMessage('BONUS_MAIL_PROBLEM');
                        break;
 
                default: // Unknown type detected!
@@ -160,7 +160,7 @@ LIMIT 1",
                }
 
                // Data found to this mail?
-               if ((SQL_NUMROWS($result_data) == 1) && (($type == "mailid") || ($type == "bonusid"))) {
+               if ((SQL_NUMROWS($result_data) == 1) && (($type == 'mailid') || ($type == 'bonusid'))) {
                        // Mail was found!
                        list($subject, $timestamp, $cat, $pay, $sender) = SQL_FETCHROW($result_data);
 
@@ -174,10 +174,10 @@ LIMIT 1",
                        }
 
                        // Prepare sender id
-                       if (($sender > 0) && ($type == "mailid")) {
+                       if (($sender > 0) && ($type == 'mailid')) {
                                // Sender id
                                $sender = bigintval($sender);
-                       } elseif ($type == "bonusid") {
+                       } elseif ($type == 'bonusid') {
                                // Is admin
                                $sender = getMessage('_ADMIN_SHORT');
                        } else {
@@ -199,7 +199,7 @@ LIMIT 1",
                        );
 
                        // Load row template
-                       if (getConfig('show_points_unconfirmed') == "Y") {
+                       if (getConfig('show_points_unconfirmed') == 'Y') {
                                $OUT .= LOAD_TEMPLATE("member_unconfirmed_row", true, $content);
                        } else {
                                $OUT .= LOAD_TEMPLATE("member_unconfirmed_row_nopoints", true, $content);
@@ -216,7 +216,7 @@ LIMIT 1",
                        );
 
                        // Display points or not?
-                       if (getConfig('show_points_unconfirmed') == "Y") {
+                       if (getConfig('show_points_unconfirmed') == 'Y') {
                                $OUT .= LOAD_TEMPLATE("member_unconfirmed_404", true, $content);
                        } else {
                                $OUT .= LOAD_TEMPLATE("member_unconfirmed_404_nopoints", true, $content);
@@ -240,14 +240,14 @@ LIMIT 1",
        define('__UNCONFIRMED_ROWS', $OUT);
 
        // Load main template
-       if (getConfig('show_points_unconfirmed') == "Y") {
+       if (getConfig('show_points_unconfirmed') == 'Y') {
                LOAD_TEMPLATE("member_unconfirmed_table");
        } else {
                LOAD_TEMPLATE("member_unconfirmed_table_nopoints");
        }
 } else {
        // No mails left to confirm... :)
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_NO_MAILS_TO_CONFIRM'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_NO_MAILS_TO_CONFIRM'));
 }
 
 //