X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-list_transfer.php;h=16720437e975fe6f7dac6df60c782967c35856ab;hb=f928ad2bed60fa256d0641eaf6d2c027a2944688;hp=7062faf6614e5337afeb42385099826e3ddc4667;hpb=a090e351c49fe021fb3064325694da03402332e0;p=mailer.git diff --git a/inc/modules/admin/what-list_transfer.php b/inc/modules/admin/what-list_transfer.php index 7062faf661..16720437e9 100644 --- a/inc/modules/admin/what-list_transfer.php +++ b/inc/modules/admin/what-list_transfer.php @@ -38,7 +38,7 @@ // Some security stuff... if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } @@ -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)) { @@ -57,23 +56,21 @@ if (SQL_NUMROWS($result) > 0) $content = array( 'sw' => $SW, 'idx' => $content['trans_id'], - 'stamp' => MAKE_DATETIME($content['time_trans'], "3"), - 'from_link' => ADMIN_USER_PROFILE_LINK($content['userid']), - 'to_link' => ADMIN_USER_PROFILE_LINK($content['to_uid']), + 'stamp' => generateDateTime($content['time_trans'], '3'), + 'from_link' => generateUserProfileLink($content['userid']), + 'to_link' => generateUserProfileLink($content['to_uid']), 'reason' => wordwrap($content['reason'], 15), - 'points' => TRANSLATE_COMMA($content['points']), + 'points' => translateComma($content['points']), ); // 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 = " @@ -87,7 +84,7 @@ if (SQL_NUMROWS($result) > 0) define('__TRANSFER_ROWS', $OUT); // Remeber total amount -define('__TRANSFER_TOTAL_VALUE', TRANSLATE_COMMA($total)); +define('__TRANSFER_TOTAL_VALUE', translateComma($total)); // Set title define('__TRANSFER_TITLE', getMessage('TRANSFER_LIST_ALL')); @@ -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', " "); +define('__TRANSFER_DELETE', ' '); // Load final template -LOAD_TEMPLATE("admin_list_transfer"); +LOAD_TEMPLATE('admin_list_transfer'); // ?>