Changeset 7883 for trunk/wp-admin/options-writing.php
- Timestamp:
- 05/04/2008 10:37:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-writing.php
r7498 r7883 15 15 <table class="form-table"> 16 16 <tr valign="top"> 17 <th scope="row"> <?php _e('Size of the post box') ?></th>17 <th scope="row"><label for="default_post_edit_rows"> <?php _e('Size of the post box') ?></label></th> 18 18 <td><input name="default_post_edit_rows" type="text" id="default_post_edit_rows" value="<?php form_option('default_post_edit_rows'); ?>" size="2" style="width: 1.5em;" /> 19 19 <?php _e('lines') ?></td> … … 21 21 <tr valign="top"> 22 22 <th scope="row"><?php _e('Formatting') ?></th> 23 <td> 23 <td><fieldset><legend class="hidden"><?php _e('Formatting') ?></legend> 24 24 <label for="use_smilies"> 25 25 <input name="use_smilies" type="checkbox" id="use_smilies" value="1" <?php checked('1', get_option('use_smilies')); ?> /> 26 26 <?php _e('Convert emoticons like <code>:-)</code> and <code>:-P</code> to graphics on display') ?></label><br /> 27 27 <label for="use_balanceTags"><input name="use_balanceTags" type="checkbox" id="use_balanceTags" value="1" <?php checked('1', get_option('use_balanceTags')); ?> /> <?php _e('WordPress should correct invalidly nested XHTML automatically') ?></label> 28 </ td>28 </fieldset></td> 29 29 </tr> 30 30 <tr valign="top"> 31 <th scope="row">< ?php _e('Default Post Category') ?></th>31 <th scope="row"><label for="default_category"><?php _e('Default Post Category') ?></label></th> 32 32 <td><select name="default_category" id="default_category"> 33 33 <?php … … 43 43 </tr> 44 44 <tr valign="top"> 45 <th scope="row">< ?php _e('Default Link Category') ?></th>45 <th scope="row"><label for="default_link_category"><?php _e('Default Link Category') ?></label></th> 46 46 <td><select name="default_link_category" id="default_link_category"> 47 47 <?php … … 63 63 <table class="form-table"> 64 64 <tr valign="top"> 65 <th scope="row">< ?php _e('Mail Server') ?></th>65 <th scope="row"><label for="mailserver_url"><?php _e('Mail Server') ?></label></th> 66 66 <td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php form_option('mailserver_url'); ?>" size="40" /> 67 67 <label for="mailserver_port"><?php _e('Port') ?></label> … … 70 70 </tr> 71 71 <tr valign="top"> 72 <th scope="row">< ?php _e('Login Name') ?></th>72 <th scope="row"><label for="mailserver_login"><?php _e('Login Name') ?></label></th> 73 73 <td><input name="mailserver_login" type="text" id="mailserver_login" value="<?php form_option('mailserver_login'); ?>" size="40" /></td> 74 74 </tr> 75 75 <tr valign="top"> 76 <th scope="row">< ?php _e('Password') ?></th>76 <th scope="row"><label for="mailserver_pass"><?php _e('Password') ?></label></th> 77 77 <td> 78 78 <input name="mailserver_pass" type="text" id="mailserver_pass" value="<?php form_option('mailserver_pass'); ?>" size="40" /> … … 80 80 </tr> 81 81 <tr valign="top"> 82 <th scope="row">< ?php _e('Default Mail Category') ?></th>82 <th scope="row"><label for="default_email_category"><?php _e('Default Mail Category') ?></label></th> 83 83 <td><select name="default_email_category" id="default_email_category"> 84 84 <?php … … 99 99 <?php if ( get_option('blog_public') ) : ?> 100 100 101 <p>< ?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.') ?></p>101 <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> 102 102 103 103 <textarea name="ping_sites" id="ping_sites" style="width: 98%;" rows="3" cols="50"><?php form_option('ping_sites'); ?></textarea>
Note: See TracChangeset
for help on using the changeset viewer.