Index: wp-admin/options-reading.php
===================================================================
--- wp-admin/options-reading.php	(revision 21539)
+++ wp-admin/options-reading.php	(working copy)
@@ -20,6 +20,7 @@
  *
  * @package WordPress
  * @subpackage Reading_Settings_Screen
+ * @since 3.1.0
  */
 function add_js() {
 ?>
@@ -41,6 +42,18 @@
 }
 add_action('admin_head', 'add_js');
 
+/**
+ * Display blog charset option.
+ *
+ * @package WordPress
+ * @subpackage Reading_Settings_Screen
+ * @since 3.5.0
+ */
+function options_reading_blog_charset() {
+	echo '<input name="blog_charset" type="text" id="blog_charset" value="' . esc_attr( get_option( 'blog_charset' ) ) . '" class="regular-text" />';
+	echo '<p class="description">' . __( 'The <a href="http://codex.wordpress.org/Glossary#Character_set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>';
+}
+
 get_current_screen()->add_help_tab( array(
 	'id'      => 'overview',
 	'title'   => __('Overview'),
@@ -67,11 +80,6 @@
 <?php
 settings_fields( 'reading' );
 
-function options_reading_blog_charset() {
-	echo '<input name="blog_charset" type="text" id="blog_charset" value="' . esc_attr( get_option( 'blog_charset' ) ) . '" class="regular-text" />';
-	echo '<p class="description">' . __( 'The <a href="http://codex.wordpress.org/Glossary#Character_set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>';
-}
-
 if ( ! in_array( get_option( 'blog_charset' ), array( 'utf8', 'utf-8', 'UTF8', 'UTF-8' ) ) )
 	add_settings_field( 'blog_charset', __( 'Encoding for pages and feeds' ), 'options_reading_blog_charset', 'reading' );
 else
