Ticket #21828: wp_mime_type_icon.patch
File wp_mime_type_icon.patch, 505 bytes (added by , 12 years ago) |
---|
-
wp-includes/post.php
4049 4049 * @return string|bool 4050 4050 */ 4051 4051 function wp_mime_type_icon( $mime = 0 ) { 4052 $post_id = 0; 4052 4053 if ( !is_numeric($mime) ) 4053 4054 $icon = wp_cache_get("mime_type_icon_$mime"); 4054 4055 if ( empty($icon) ) { 4055 $post_id = 0;4056 4056 $post_mimes = array(); 4057 4057 if ( is_numeric($mime) ) { 4058 4058 $mime = (int) $mime;