Fixed empty API message/status in primera and wernis extensions
[mailer.git] / inc / modules / admin / what-list_primera.php
index 3f7af733a2f989c6188de8d7377ca2247de95478..6bd4c379c5af7e36093b0d0c36f7da83fa7213a2 100644 (file)
@@ -38,7 +38,7 @@ 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, primera_account, primera_amount, primera_timestamp, primera_type, primera_api_message, primera_api_status FROM "._MYSQL_PREFIX."_user_primera ORDER BY primera_timestamp DESC, id DESC",
@@ -55,12 +55,16 @@ if (SQL_NUMROWS($result) > 0) {
                $content['primera_amount']              = TRANSLATE_COMMA($content['primera_amount']);
                $content['primera_timestamp']   = MAKE_DATETIME($content['primera_timestamp'], "2");
                $content['raw_type']                    = strtolower($content['primera_type']);
-               $content['primera_type']                        = PRIMERA_TRANSFER_STATUS($content['primera_type']);
+               $content['primera_type']                = PRIMERA_TRANSFER_STATUS($content['primera_type']);
+
+               // Fix empty message and status
+               if (empty($content['primera_api_message'])) $content['primera_api_message'] = "---";
+               if (empty($content['primera_api_status']))  $content['primera_api_status']  = "OK";
 
                // Append it and switch colors
                $OUT .= LOAD_TEMPLATE("admin_list_primera_row", true, $content);
                $SW = 3 - $SW;
-       }
+       } // END - while
 
        // Load main template
        LOAD_TEMPLATE("admin_list_primera_main", false, $OUT);