Changeset 13750 for trunk/wp-admin/options-reading.php
- Timestamp:
- 03/18/2010 05:46:25 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-reading.php
r12918 r13750 11 11 12 12 if ( ! current_user_can( 'manage_options' ) ) 13 wp_die( __( 'You do not have sufficient permissions to manage options for this blog.' ) );13 wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) ); 14 14 15 15 $title = __( 'Reading Settings' ); … … 76 76 <th scope="row"><label for="blog_charset"><?php _e( 'Encoding for pages and feeds' ); ?></label></th> 77 77 <td><input name="blog_charset" type="text" id="blog_charset" value="<?php form_option( 'blog_charset' ); ?>" class="regular-text" /> 78 <span class="description"><?php _e( 'The <a href="http://codex.wordpress.org/Glossary#Character_set">character encoding</a> of your blog(UTF-8 is recommended, if you are adventurous there are some <a href="http://en.wikipedia.org/wiki/Character_set">other encodings</a>)' ); ?></span></td>78 <span class="description"><?php _e( 'The <a href="http://codex.wordpress.org/Glossary#Character_set">character encoding</a> of your site (UTF-8 is recommended, if you are adventurous there are some <a href="http://en.wikipedia.org/wiki/Character_set">other encodings</a>)' ); ?></span></td> 79 79 </tr> 80 80 <?php do_settings_fields( 'reading', 'default' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.