Ticket #8383: 8383.patch
| File 8383.patch, 3.1 KB (added by , 17 years ago) |
|---|
-
wp-admin/options-general.php
78 78 </tr> 79 79 <tr valign="top"> 80 80 <th scope="row"><label for="admin_email"><?php _e('E-mail address') ?> </label></th> 81 <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text code" />81 <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text" /> 82 82 <span class="setting-description"><?php _e('This address is used for admin purposes, like new user notification.') ?></span></td> 83 83 </tr> 84 84 <tr valign="top"> -
wp-admin/options-reading.php
71 71 72 72 <tr valign="top"> 73 73 <th scope="row"><label for="blog_charset"><?php _e('Encoding for pages and feeds') ?></label></th> 74 <td><input name="blog_charset" type="text" id="blog_charset" value="<?php form_option('blog_charset'); ?>" class="regular-text code" />74 <td><input name="blog_charset" type="text" id="blog_charset" value="<?php form_option('blog_charset'); ?>" class="regular-text" /> 75 75 <span class="setting-description"><?php _e('The character encoding you write your blog in (UTF-8 is <a href="http://developer.apple.com/documentation/macos8/TextIntlSvcs/TextEncodingConversionManager/TEC1.5/TEC.b0.html">recommended</a>)') ?></span></td> 76 76 </tr> 77 77 <?php do_settings_fields('reading', 'default'); ?> -
wp-admin/options-writing.php
84 84 <table class="form-table"> 85 85 <tr valign="top"> 86 86 <th scope="row"><label for="mailserver_url"><?php _e('Mail Server') ?></label></th> 87 <td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php form_option('mailserver_url'); ?>" class="regular-text " />87 <td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php form_option('mailserver_url'); ?>" class="regular-text code" /> 88 88 <label for="mailserver_port"><?php _e('Port') ?></label> 89 89 <input name="mailserver_port" type="text" id="mailserver_port" value="<?php form_option('mailserver_port'); ?>" class="small-text" /> 90 90 </td> … … 116 116 117 117 <p><label for="ping_sites"><?php _e('When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="http://codex.wordpress.org/Update_Services">Update Services</a> on the Codex. Separate multiple service <abbr title="Universal Resource Locator">URL</abbr>s with line breaks.') ?></label></p> 118 118 119 <textarea name="ping_sites" id="ping_sites" class="large-text " rows="3"><?php form_option('ping_sites'); ?></textarea>119 <textarea name="ping_sites" id="ping_sites" class="large-text code" rows="3"><?php form_option('ping_sites'); ?></textarea> 120 120 121 121 <?php else : ?> 122 122