Changeset 10971
- Timestamp:
- 04/17/2009 01:04:00 AM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-general.php
r10962 r10971 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> -
trunk/wp-admin/options-reading.php
r10150 r10971 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> -
trunk/wp-admin/options-writing.php
r10150 r10971 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" /> … … 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 : ?>
Note: See TracChangeset
for help on using the changeset viewer.