[wp-trac] [WordPress Trac] #11824: Erroneous MIME type for .ico files

WordPress Trac wp-trac at lists.automattic.com
Fri Jan 8 14:23:48 UTC 2010


#11824: Erroneous MIME type for .ico files
----------------------------+-----------------------------------------------
 Reporter:  davide.vicario  |       Owner:     
     Type:  defect (bug)    |      Status:  new
 Priority:  low             |   Milestone:     
Component:  General         |     Version:     
 Severity:  minor           |    Keywords:     
----------------------------+-----------------------------------------------
 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

 or: http://en.wikipedia.org/wiki/ICO_(file_format)

-- 
Ticket URL: <http://core.trac.wordpress.org/ticket/11824>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list