]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_transfer.php
Comments fixed, ext-network continued, fix for mod stats:
[mailer.git] / inc / modules / admin / what-list_transfer.php
index a8458870004dffe3eee2cf9932b9183801759d67..677be3706ab5020b0059ce1b0084d4f4f5f7c210 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/07/2004 *
- * ================                             Last change: 10/14/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/07/2004 *
+ * ===================                          Last change: 10/14/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-list_transfer.php                           *
@@ -46,20 +46,20 @@ addMenuDescription('admin', __FILE__);
 
 // We only need outgoing transfers
 $result = SQL_QUERY("SELECT userid, to_userid, trans_id, points, reason, time_trans FROM `{?_MYSQL_PREFIX?}_user_transfers_out` ORDER BY trans_id", __FILE__, __LINE__);
-$total = 0;
+$total = '0';
 if (SQL_NUMROWS($result) > 0) {
        // Output rows
        $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
                // Prepare data for the row template
                $content = array(
-                       'sw'        => $SW,
-                       'trans_id'  => $content['trans_id'],
-                       'stamp'     => generateDateTime($content['time_trans'], '3'),
-                       'from_link' => generateUserProfileLink($content['userid']),
-                       'to_link'   => generateUserProfileLink($content['to_userid']),
-                       'reason'    => wordwrap($content['reason'], 15),
-                       'points'    => translateComma($content['points']),
+                       'sw'         => $SW,
+                       'trans_id'   => $content['trans_id'],
+                       'time_trans' => generateDateTime($content['time_trans'], 3),
+                       'from_link'  => generateUserProfileLink($content['userid']),
+                       'to_link'    => generateUserProfileLink($content['to_userid']),
+                       'reason'     => wordwrap($content['reason'], 15),
+                       'points'     => translateComma($content['points']),
                );
 
                // Load row template add points and switch color
@@ -72,7 +72,7 @@ if (SQL_NUMROWS($result) > 0) {
 } else {
        // Nothing for in and out
        $OUT = "<tr>
-  <td colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
+  <td colspan=\"6\" align=\"center\" class=\"bottom\">
     ".loadTemplate('admin_settings_saved', true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))."
   </td>
 </tr>";