#11824 closed defect (bug) (maybelater)
Erroneous MIME type for .ico files
Reported by: | davide.vicario | Owned by: | cnorris23 |
---|---|---|---|
Milestone: | Priority: | low | |
Severity: | minor | Version: | 2.9.1 |
Component: | Media | Keywords: | has-patch dev-feedback |
Focuses: | Cc: |
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 (7)
#1
@
15 years ago
- 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
#3
@
14 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?