XF 1.1 Attachment Browser - blank content type

Do you have any add-ons installed?

The () would suggest an add-on which hasn't defined a content type.

The blank row on the dropdown is standard - I have it on mine.
 
As Brogan suggested, it looks like some attachments don't have a content_type. Run this query to find any such attachments:

Code:
SELECT *
FROM xf_attachment
WHERE content_type = '';
 
Top Bottom