X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_wernis.php;h=999906f7c88296a4bd5bea70dfb13ff15e67b264;hp=ee70914f836cf508d6b4b8f7aca2a442b4bcde1d;hb=ccc4a69ce9b17aa8d7b1554a3b2b017db091821b;hpb=f97a999e0737c0007ae9c3c26dfef49f75a175ac diff --git a/inc/modules/admin/what-list_wernis.php b/inc/modules/admin/what-list_wernis.php index ee70914f83..999906f7c8 100644 --- a/inc/modules/admin/what-list_wernis.php +++ b/inc/modules/admin/what-list_wernis.php @@ -47,7 +47,7 @@ ADD_DESCR('admin', __FILE__); // Check for entries $result = SQL_QUERY("SELECT id, userid, wernis_account, wernis_amount, wernis_timestamp, wernis_type, wernis_api_message, wernis_api_status FROM `{!_MYSQL_PREFIX!}_user_wernis` ORDER BY wernis_timestamp DESC, id DESC", - __FILE__, __LINE__); +__FILE__, __LINE__); // Are there some entries to display? if (SQL_NUMROWS($result) > 0) { @@ -56,14 +56,14 @@ if (SQL_NUMROWS($result) > 0) { while ($content = SQL_FETCHARRAY($result)) { // Translate some data and add color $content['sw'] = $SW; - $content['link'] = ADMIN_USER_PROFILE_LINK($content['userid']); - $content['wernis_amount'] = TRANSLATE_COMMA($content['wernis_amount']); - $content['wernis_timestamp'] = MAKE_DATETIME($content['wernis_timestamp'], "2"); + $content['link'] = generateUserProfileLink($content['userid']); + $content['wernis_amount'] = translateComma($content['wernis_amount']); + $content['wernis_timestamp'] = generateDateTime($content['wernis_timestamp'], '2'); $content['raw_type'] = strtolower($content['wernis_type']); $content['wernis_type'] = WERNIS_TRANSFER_STATUS($content['wernis_type']); // Fix empty message and status - if (empty($content['wernis_api_message'])) $content['wernis_api_message'] = "---"; + if (empty($content['wernis_api_message'])) $content['wernis_api_message'] = '---'; if (empty($content['wernis_api_status'])) $content['wernis_api_status'] = "OK"; // Append it and switch colors