]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-stats.php
Fix for missing array elements
[mailer.git] / inc / modules / member / what-stats.php
index 03242c07ab49ac569f575626b4fb51d5aa1fec6b..42cd192d7293673e3e2a193478aaf1da04b06874 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 11/09/2003 *
- * ===============                              Last change: 04/21/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 11/09/2003 *
+ * ===================                          Last change: 04/21/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-stats.php                                   *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -50,11 +51,15 @@ addMenuDescription('member', __FILE__);
 $main_content = array();
 
 // Load waiting/pending orders
-$result = SQL_QUERY_ESC("SELECT id, cat_id, payment_id, subject, url, timestamp, target_send, data_type, zip
-FROM `{?_MYSQL_PREFIX?}_pool`
-WHERE sender=%s AND data_type != 'SEND'
-ORDER BY timestamp DESC",
-array(getUserId()), __FILE__, __LINE__);
+$result = SQL_QUERY_ESC("SELECT
+       `id`, `cat_id`, `payment_id`, `subject`, `url`, `timestamp`, `target_send`, `data_type`, `zip`
+FROM
+       `{?_MYSQL_PREFIX?}_pool`
+WHERE
+       `sender`=%s AND `data_type` != 'SEND'
+ORDER BY
+       `timestamp` DESC",
+       array(getMemberId()), __FILE__, __LINE__);
 
 // Are there mails left in pool?
 if (SQL_NUMROWS($result) > 0) {
@@ -65,18 +70,17 @@ if (SQL_NUMROWS($result) > 0) {
                if (empty($data['zip'])) $data['zip'] =  '---';
 
                // Prepare content for output
-               // @TODO Rewrite in template subj->subject,stamp->timestamp,recs->target_send
                $content = array(
-                       'sw'      => $SW,
-                       'id'      => $data['id'],
-                       'cat'     => getCategory($data['cat_id']),
-                       'pay'     => getPaymentTitlePrice($data['payment_id']),
-                       'subject' => $data['subject'],
-                       'url'     => generateDerefererUrl($data['url']),
-                       'stamp'   => generateDateTime($data['timestamp'], '2'),
-                       'recs'    => $data['target_send'],
-                       'type'    => translatePoolType($data['data_type']),
-                       'zip'     => $data['zip']
+                       'sw'          => $SW,
+                       'id'          => $data['id'],
+                       'cat'         => getCategory($data['cat_id']),
+                       'pay'         => getPaymentTitlePrice($data['payment_id']),
+                       'subject'     => $data['subject'],
+                       'url'         => generateDerefererUrl($data['url']),
+                       'timestamp'   => generateDateTime($data['timestamp'], 2),
+                       'target_send' => $data['target_send'],
+                       'type'        => translatePoolType($data['data_type']),
+                       'zip'         => $data['zip']
                );
 
                // Load template
@@ -105,25 +109,25 @@ WHERE
        `userid`=%s
 ORDER BY
        `timestamp_ordered` DESC",
-       array(getUserId()), __FILE__, __LINE__);
+       array(getMemberId()), __FILE__, __LINE__);
 
 if (SQL_NUMROWS($result) > 0) {
        // Mail orders are in pool so we can display them
        $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
                // Prepare data for the template
-               // @TODO Rewrite in template: stamp->timestamp_ordered,recs->max_rec,clix->clicks,perc->percents
+               // @TODO Rewrite in template: clix->clicks
                $content = array(
-                       'sw'       => $SW,
-                       'cat'      => getCategory($content['cat_id']),
-                       'pay'      => getPaymentTitlePrice($content['payment_id']),
-                       'url'      => generateDerefererUrl($content['url']),
-                       'stamp'    => generateDateTime($content['timestamp_ordered'], '2'),
-                       'recs'     => $content['max_rec'],
-                       'sent'     => generateDateTime($content['timestamp_send'], '2'),
-                       'clix'     => $content['clicks'],
-                       'subject'  => $content['subject'],
-                       'percents' => translateComma($content['clicks'] / $content['max_rec'] * 100)."%",
+                       'sw'                => $SW,
+                       'cat'               => getCategory($content['cat_id']),
+                       'pay'               => getPaymentTitlePrice($content['payment_id']),
+                       'url'               => generateDerefererUrl($content['url']),
+                       'timestamp_ordered' => generateDateTime($content['timestamp_ordered'], 2),
+                       'target_send'       => $content['max_rec'],
+                       'sent'              => generateDateTime($content['timestamp_send'], 2),
+                       'clix'              => $content['clicks'],
+                       'subject'           => $content['subject'],
+                       'percents'          => translateComma($content['clicks'] / $content['max_rec'] * 100)."%",
                );
 
                // Load row template and switch colors