From ef9c73e792c627e24c800c88d7f31e21f10a9c29 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 25 Feb 2014 01:27:57 +0000 Subject: [PATCH] Force UTF-8 in load-styles.php, like we do in load-scripts.php. props iamfriendly, mjbanks. fixes #25012. git-svn-id: https://develop.svn.wordpress.org/trunk@27253 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/load-styles.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/load-styles.php b/src/wp-admin/load-styles.php index 75e655c4d4..64ae474199 100644 --- a/src/wp-admin/load-styles.php +++ b/src/wp-admin/load-styles.php @@ -134,7 +134,7 @@ foreach( $load as $handle ) { } } -header('Content-Type: text/css'); +header('Content-Type: text/css; charset=UTF-8'); header('Expires: ' . gmdate( "D, d M Y H:i:s", time() + $expires_offset ) . ' GMT'); header("Cache-Control: public, max-age=$expires_offset");