Possible fix for #125, applied fixes from profi-concept's branch
[mailer.git] / inc / modules / admin / what-list_transfer.php
index dd2a3cdf92e3a3c1ed820432443958f49b21271c..16720437e975fe6f7dac6df60c782967c35856ab 100644 (file)
@@ -48,8 +48,7 @@ ADD_DESCR('admin', __FILE__);
 // We only need outgoing transfers
 $result = SQL_QUERY("SELECT userid, to_uid, trans_id, points, reason, time_trans FROM `{!_MYSQL_PREFIX!}_user_transfers_out` ORDER BY trans_id", __FILE__, __LINE__);
 $total = 0;
-if (SQL_NUMROWS($result) > 0)
-{
+if (SQL_NUMROWS($result) > 0) {
        // Output rows
        $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
@@ -65,15 +64,13 @@ if (SQL_NUMROWS($result) > 0)
                );
 
                // Load row template add points and switch color
-               $OUT .= LOAD_TEMPLATE("admin_list_transfer_row", true, $content);
+               $OUT .= LOAD_TEMPLATE('admin_list_transfer_row', true, $content);
                $total += $content['points']; $SW = 3 - $SW;
        }
 
        // Free memory
        SQL_FREERESULT($result);
-}
-else
-{
+} else {
        // Nothing for in and out
        $OUT = "<tr>
   <td colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
@@ -96,10 +93,10 @@ define('__TRANSFER_TITLE', getMessage('TRANSFER_LIST_ALL'));
 define('__TRANSFER_SUM', getMessage('TRANSFER_TOTAL_BALANCE'));
 
 // Don't show a delete button
-define('__TRANSFER_DELETE', "&nbsp;");
+define('__TRANSFER_DELETE', '&nbsp;');
 
 // Load final template
-LOAD_TEMPLATE("admin_list_transfer");
+LOAD_TEMPLATE('admin_list_transfer');
 
 //
 ?>