X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_transfer.php;h=24cff28bedb412b1ea65e45a6c3b65b4ea8981df;hp=a6aa3892216dde70699fe99e3ccd56d7d842df8a;hb=7b0f17cd637e388049d2167811e4332cec1e979b;hpb=aea4f2a51ffa6f483056c6ce167c8c6fd8ca6129 diff --git a/inc/modules/admin/what-list_transfer.php b/inc/modules/admin/what-list_transfer.php index a6aa389221..24cff28bed 100644 --- a/inc/modules/admin/what-list_transfer.php +++ b/inc/modules/admin/what-list_transfer.php @@ -57,11 +57,11 @@ 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 @@ -87,7 +87,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'));