Changeset 1149
- Timestamp:
- 11/15/07 16:11:13 (1 year ago)
- Files:
-
- trunk/wp-content/blogs.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-content/blogs.php
r1129 r1149 72 72 } 73 73 74 if( function_exists( 'mime_content_type' ) ) { 75 $mime[ 'type' ] = mime_content_type( $file ); 76 } else { 77 $mime = wp_check_filetype( $_SERVER[ 'REQUEST_URI' ] ); 78 } 74 $mime = wp_check_filetype( $_SERVER[ 'REQUEST_URI' ] ); 75 if( $mime[ 'type' ] === false && function_exists( 'mime_content_type' ) ) 76 $mime[ 'type' ] = mime_content_type( $file ); 77 79 78 if( $mime[ 'type' ] != false ) { 80 79 $mimetype = $mime[ 'type' ];
