X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_wernis.php;h=99066dc9e8883c4e43755d98e9f64e34e3341547;hb=5deec33be1baf2135eefc2bbb0d1b63c6cbd2f9a;hp=ac0f53bc9a3421f78418ce9d3c73dc02206e46e5;hpb=7f104f6fe558bb56b4205241435a2357c2feece1;p=mailer.git diff --git a/inc/modules/admin/what-list_wernis.php b/inc/modules/admin/what-list_wernis.php index ac0f53bc9a..99066dc9e8 100644 --- a/inc/modules/admin/what-list_wernis.php +++ b/inc/modules/admin/what-list_wernis.php @@ -38,10 +38,10 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +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", +$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__); // Are there some entries to display? @@ -57,6 +57,10 @@ if (SQL_NUMROWS($result) > 0) { $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_status'])) $content['wernis_api_status'] = "OK"; + // Append it and switch colors $OUT .= LOAD_TEMPLATE("admin_list_wernis_row", true, $content); $SW = 3 - $SW;