]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_unconfirmed.php
Mailer project continued:
[mailer.git] / inc / modules / admin / what-list_unconfirmed.php
index 6dadfa922b1e18bf3bc66403c73a89eaea5a8730..c9177fa93a74dce781d9b8f9928002654ab2ba60 100644 (file)
@@ -84,8 +84,15 @@ LIMIT 1",
        // @TODO This constant might be unused? define('__LIST_UNCON_TITLE', '{--ADMIN_LIST_UNCONFIRMED_BONUS_LINKS--}');
 
        // SQL query for mail data (both ids are required for compatiblity to above normal mail
+       // @TODO `id` has been used two times???
        $sql = sprintf("SELECT
-       `id`,`id` AS `sender`,`subject`,`text`,`url`,`timestamp`,`mails_sent` AS `max_rec`
+       `id`,
+       `id` AS `sender`,
+       `subject`,
+       `text`,
+       `url`,
+       `timestamp`,
+       `mails_sent` AS `max_rec`
 FROM
        `{?_MYSQL_PREFIX?}_bonus`
 WHERE
@@ -113,7 +120,7 @@ if (($listed === true) && (!empty($sql))) {
        // Load mail data
        $result_master = SQL_QUERY($sql, __FILE__, __LINE__);
 
-       // Do we have an entry?
+       // Is there an entry?
        if (SQL_NUMROWS($result_master) == 1) {
                // Mail order / bonus mail found
                $poolData = SQL_FETCHARRAY($result_master);
@@ -155,7 +162,7 @@ LIMIT %s",
                                bigintval($poolData['max_rec'])
                        ),__FILE__, __LINE__);
 
-               // Do we have entries?
+               // Are there entries?
                if (!SQL_HASZERONUMS($result)) {
                        // At least one link left to confirm
                        $OUT = '';