X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_transfer.php;h=90ec40b5412935e56050037e4f9d728f2f5dbcf4;hb=1ba8d9449de1b6fea32e88d581fb7c121b0522b1;hp=959ee3f4bf0b6057d952554ff20f82a96b2ebe92;hpb=20741b93fd58620af677a7f1039ffd16ea6ec689;p=mailer.git diff --git a/inc/modules/admin/what-list_transfer.php b/inc/modules/admin/what-list_transfer.php index 959ee3f4bf..90ec40b541 100644 --- a/inc/modules/admin/what-list_transfer.php +++ b/inc/modules/admin/what-list_transfer.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -44,34 +44,38 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { addYouAreHereLink('admin', __FILE__); // We only need outgoing transfers -$result = SQL_QUERY('SELECT - `userid` AS `from_userid`,`to_userid`,`trans_id`,`points`,`reason`,`time_trans` +$result = sqlQuery('SELECT + `userid` AS `from_userid`, + `to_userid`, + `trans_id`, + `points`, + `reason`, + `time_trans` FROM `{?_MYSQL_PREFIX?}_user_transfers_out` ORDER BY `trans_id` ASC', __FILE__, __LINE__); $total = '0'; -if (!SQL_HASZERONUMS($result)) { +if (!ifSqlHasZeroNums($result)) { // Output rows $OUT = ''; - while ($content = SQL_FETCHARRAY($result)) { + while ($content = sqlFetchArray($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 // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); } else { // Nothing for in and out $OUT = ' - ' . displayMessage('{--TRANSFER_NO_INOUT_TRANSFERS--}', true) . ' + ' . displayMessage('{--TRANSFER_NO_INOUT_TRANSFERS--}', TRUE) . ' '; } @@ -92,7 +96,7 @@ $content['balance'] = '{--TRANSFER_TOTAL_BALANCE--}'; $content['delete'] = ' '; // Load final template -loadTemplate('admin_list_transfer', false, $content); +loadTemplate('admin_list_transfer', FALSE, $content); // [EOF] ?>