]> 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 0b9172531c70229e65399944e60d3ffb454373a4..c9177fa93a74dce781d9b8f9928002654ab2ba60 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -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 = '';