]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_transfer.php
Code style changed, ext-user continued:
[mailer.git] / inc / modules / admin / what-list_transfer.php
index 959ee3f4bf0b6057d952554ff20f82a96b2ebe92..a83f0ea0ec3892fd1c8bcfa9865bc91a0bbdfc30 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 *
@@ -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
@@ -61,7 +66,7 @@ if (!SQL_HASZERONUMS($result)) {
                $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 +76,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>';
 }
@@ -92,7 +97,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]
 ?>