From 0a26ef9d38d84f29b2eb48fc219d2a1ada707f8e Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 13 May 2011 19:31:36 +0000 Subject: [PATCH] s/Content-type/Content-Type/. Props dvwallin. fixes #17256 git-svn-id: http://svn.automattic.com/wordpress/trunk@17922 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-files.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/ms-files.php b/wp-includes/ms-files.php index 5ec6d1ddc..2d68f11dc 100644 --- a/wp-includes/ms-files.php +++ b/wp-includes/ms-files.php @@ -38,7 +38,7 @@ if( $mime[ 'type' ] ) else $mimetype = 'image/' . substr( $file, strrpos( $file, '.' ) + 1 ); -header( 'Content-type: ' . $mimetype ); // always send this +header( 'Content-Type: ' . $mimetype ); // always send this if ( false === strpos( $_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS' ) ) header( 'Content-Length: ' . filesize( $file ) );