Index: wp-includes/load.php
===================================================================
--- wp-includes/load.php	(revision 23371)
+++ wp-includes/load.php	(working copy)
@@ -514,7 +514,8 @@
  */
 function wp_set_internal_encoding() {
 	if ( function_exists( 'mb_internal_encoding' ) ) {
-		if ( !@mb_internal_encoding( get_option( 'blog_charset' ) ) )
+		$charset = get_option( 'blog_charset' );
+		if ( ! $charset || ! @mb_internal_encoding( $charset ) )
 			mb_internal_encoding( 'UTF-8' );
 	}
 }
