]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_unconfirmed.php
Comments fixed, ext-network continued, fix for mod stats:
[mailer.git] / inc / modules / admin / what-list_unconfirmed.php
index 7c4e3c6ca7a922d7e27b6be37295e462325c3258..a331e22230506b05a6648d85e00c757e6f8c34d3 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/09/2004 *
- * ================                             Last change: 10/31/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/09/2004 *
+ * ===================                          Last change: 10/31/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-list_unconfirmed.php                        *
@@ -67,7 +67,7 @@ WHERE
        p.id='".getRequestElement('mid')."'
 LIMIT 1";
 
-       // Column, type and ID for member's mail
+       // Column, type and id for member's mail
        $col = 'stats_id'; $type = 'NORMAL'; $ID = '-1';
 
        // Load admin_list_unconfirmed template
@@ -78,7 +78,7 @@ LIMIT 1";
        // SQL query for mail data (both ids are required for compatiblity to above normal mail
        $sql = "SELECT `id`, `id`, `subject`, `text`, `url`, `timestamp`, `mails_sent` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`='".getRequestElement('bid')."' LIMIT 1";
 
-       // Column, type and ID for member's mail
+       // Column, type and id for member's mail
        $col = 'bonus_id'; $type = 'BONUS'; $ID = getRequestElement('bid');
 
        // Load admin_list_unconfirmed template
@@ -101,7 +101,7 @@ if ($listed === true) {
 
                // Transfer data to constants for the template
                if (($stats_id > 0) && ($ID == '-1')) $ID = $stats_id;
-               if ($col == 'bonus_id') $sender = 0;
+               if ($col == 'bonus_id') $sender = '0';
 
                // Load unconfirmed mail links. Hmmm, this select query is pretty cool
                // but it does only show unconfirmed mail links from existing user
@@ -130,7 +130,7 @@ WHERE
                                $content = array(
                                        'sw'     => $SW,
                                        'u_link' => generateUserProfileLink($content['userid']),
-                                       'userid'    => $content['userid'],
+                                       'userid' => $content['userid'],
                                        'link'   => $LINK,
                                        'id'     => $ID,
                                        'email'  => "<a href=\"".generateEmailLink($content['email'], 'user_data')."\">".translateGender($content['gender'])." ".$content['surname']." ".$content['family']."</a>",
@@ -154,13 +154,12 @@ WHERE
 
                // Prepare content
                $content = array(
-                       'sender_link'   => adminCreateUserLink($sender),
-                       'sender_userid' => $sender,
+                       'sender_link'   => generateUserProfileLink($sender),
                        'subject'       => $subj,
                        'text'          => $text,
                        'url'           => generateFrametesterUrl($url),
                        'unconfirmed'   => $unconfirmed,
-                       'stamp'         => generateDateTime($stamp, '2'),
+                       'stamp'         => generateDateTime($stamp, 2),
                        'rows'          => $OUT
                );
 
@@ -196,5 +195,5 @@ WHERE
        SQL_FREERESULT($result_master);
 }
 
-//
+// [EOF]
 ?>