]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_transfer.php
Fixed also usage of previously renamed fields as they must be the same
[mailer.git] / inc / modules / admin / what-list_transfer.php
index a3773aa3ebc684ebdc47627dccc1b1da256e1ada..e0ecf14f53422df6c4ef7efc1abea61def7bf87d 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * 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 *
  * it under the terms of the GNU General Public License as published by *
@@ -45,7 +45,12 @@ addYouAreHereLink('admin', __FILE__);
 
 // We only need outgoing transfers
 $result = SQL_QUERY('SELECT
-       `userid` AS `from_userid`, `to_userid`, `trans_id`, `points`, `reason`, `time_trans`
+       `userid` AS `from_userid`,
+       `to_userid`,
+       `trans_id`,
+       `points`,
+       `reason`,
+       `time_trans`
 FROM
        `{?_MYSQL_PREFIX?}_user_transfers_out`
 ORDER BY
@@ -58,10 +63,9 @@ if (!SQL_HASZERONUMS($result)) {
        while ($content = SQL_FETCHARRAY($result)) {
                // Prepare data for the row template
                $content['time_trans']  = generateDateTime($content['time_trans'], 3);
-               $content['reason']      = wordwrap($content['reason'], 15);
 
                // Load row template add points and switch color
-               $OUT .= loadTemplate('admin_list_transfer_row', true, $content);
+               $OUT .= loadTemplate('admin_list_transfer_row', TRUE, $content);
                $total += $content['points'];
        } // END - while
 
@@ -71,7 +75,7 @@ if (!SQL_HASZERONUMS($result)) {
        // Nothing for in and out
        $OUT = '<tr>
   <td colspan="6" align="center" class="bottom">
-    ' . displayMessage('{--TRANSFER_NO_INOUT_TRANSFERS--}', true) . '
+    ' . displayMessage('{--TRANSFER_NO_INOUT_TRANSFERS--}', TRUE) . '
   </td>
 </tr>';
 }
@@ -80,7 +84,7 @@ if (!SQL_HASZERONUMS($result)) {
 $content['rows'] = $OUT;
 
 // Remeber total amount
-$content['total'] = $total;
+$content['total_points'] = $total;
 
 // Set title
 $content['title'] = '{--TRANSFER_LIST_ALL--}';
@@ -92,7 +96,7 @@ $content['balance'] = '{--TRANSFER_TOTAL_BALANCE--}';
 $content['delete'] = '&nbsp;';
 
 // Load final template
-loadTemplate('admin_list_transfer', false, $content);
+loadTemplate('admin_list_transfer', FALSE, $content);
 
 // [EOF]
 ?>