Opened 3 years ago
Last modified 15 months ago
#11824 accepted defect (bug)
Erroneous MIME type for .ico files
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | low | Milestone: | Future Release |
| Component: | Media | Version: | 2.9.1 |
| Severity: | minor | Keywords: | has-patch dev-feedback |
| Cc: | ryan@… |
Description
wp-includes/functions.php
line 2286
$mimes = apply_filters( ... ... 'ico' => 'image/x-icon', ...)
this is an erroneous label for ico file.
the right one is:
$mimes = apply_filters( ... ... 'ico' => 'image/vnd.microsoft.icon', ...)
read : http://www.iana.org/assignments/media-types/image/vnd.microsoft.icon
Attachments (1)
Change History (5)
- Component changed from General to Media
- Keywords has-patch added
- Milestone set to Future Release
- Owner set to cnorris23
- Status changed from new to accepted
- Version set to 2.9.1
comment:2
RyanMurphy — 3 years ago
comment:3
RyanMurphy — 2 years ago
- Cc ryan@… added
- Keywords dev-feedback added
Patch still applies cleanly. Possible for 3.2?
Note: See
TracTickets for help on using
tickets.

possible for 3.1?