X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_transfer.php;h=8da60d30ce57e0cf1d054a48a7a8968613a4510b;hb=2dbbe24bedc12bc5e4c91136277355b05b333ba3;hp=7413805395499d1bec7392956f729ccd29e5b9fb;hpb=04b69ac9f33369cbf654396c4a42cb1fff710ff4;p=mailer.git diff --git a/inc/modules/admin/what-list_transfer.php b/inc/modules/admin/what-list_transfer.php index 7413805395..8da60d30ce 100644 --- a/inc/modules/admin/what-list_transfer.php +++ b/inc/modules/admin/what-list_transfer.php @@ -14,11 +14,9 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -43,7 +41,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // We only need outgoing transfers $result = SQL_QUERY('SELECT @@ -54,18 +52,17 @@ ORDER BY `trans_id` ASC', __FILE__, __LINE__); $total = '0'; -if (SQL_NUMROWS($result) > 0) { +if (!SQL_HASZERONUMS($result)) { // Output rows - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the row template - $content['sw'] = $SW; $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); - $total += $content['points']; $SW = 3 - $SW; + $total += $content['points']; } // END - while // Free memory @@ -74,7 +71,7 @@ if (SQL_NUMROWS($result) > 0) { // Nothing for in and out $OUT = ' - ' . loadTemplate('admin_settings_saved', true, '{--TRANSFER_NO_INOUT_TRANSFERS--}') . ' + ' . displayMessage('{--TRANSFER_NO_INOUT_TRANSFERS--}', true) . ' '; } @@ -83,13 +80,13 @@ if (SQL_NUMROWS($result) > 0) { $content['rows'] = $OUT; // Remeber total amount -$content['total'] = translateComma($total); +$content['total_points'] = $total; // Set title -$content['title'] = getMessage('TRANSFER_LIST_ALL'); +$content['title'] = '{--TRANSFER_LIST_ALL--}'; // Set "balance" word -$content['balance'] = getMessage('TRANSFER_TOTAL_BALANCE'); +$content['balance'] = '{--TRANSFER_TOTAL_BALANCE--}'; // Don't show a delete button $content['delete'] = ' ';