Changeset 6850
- Timestamp:
- 02/14/2008 03:33:56 PM (18 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 10 edited
-
edit-category-form.php (modified) (1 diff)
-
edit-link-category-form.php (modified) (1 diff)
-
edit-tag-form.php (modified) (1 diff)
-
options-discussion.php (modified) (1 diff)
-
options-general.php (modified) (1 diff)
-
options-misc.php (modified) (1 diff)
-
options-privacy.php (modified) (1 diff)
-
options-reading.php (modified) (1 diff)
-
options-writing.php (modified) (2 diffs)
-
wp-admin.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-category-form.php
r6845 r6850 24 24 <input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" /> 25 25 <?php wp_nonce_field($nonce_action); ?> 26 <table class="niceblue" width="100%">26 <table class="niceblue"> 27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> -
trunk/wp-admin/edit-link-category-form.php
r6845 r6850 24 24 <input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" /> 25 25 <?php wp_nonce_field($nonce_action); ?> 26 <table class="niceblue" width="100%">26 <table class="niceblue"> 27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="name"><?php _e('Category name:') ?></label></th> -
trunk/wp-admin/edit-tag-form.php
r6845 r6850 24 24 <input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" /> 25 25 <?php wp_nonce_field($nonce_action); ?> 26 <table class="niceblue" width="100%">26 <table class="niceblue"> 27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="name"><?php _e('Tag name:') ?></label></th> -
trunk/wp-admin/options-discussion.php
r6846 r6850 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class="niceblue" width="100%">14 <table class="niceblue"> 15 15 <tr valign="top"> 16 16 <th scope="row"><?php _e('Default article settings') ?></th> -
trunk/wp-admin/options-general.php
r6846 r6850 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class="niceblue" width="100%">14 <table class="niceblue"> 15 15 <tr valign="top"> 16 16 <th scope="row"><?php _e('Blog Title') ?></th> -
trunk/wp-admin/options-misc.php
r6846 r6850 14 14 <?php wp_nonce_field('update-options') ?> 15 15 <h3><?php _e('Uploading'); ?></h3> 16 <table class="niceblue" width="100%">16 <table class="niceblue"> 17 17 <tr valign="top"> 18 18 <th scope="row"><?php _e('Store uploads in this folder'); ?></th> -
trunk/wp-admin/options-privacy.php
r6846 r6850 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class="niceblue" width="100%">14 <table class="niceblue"> 15 15 <tr valign="top"> 16 16 <th scope="row"><?php _e('Blog Visibility') ?> </th> -
trunk/wp-admin/options-reading.php
r6846 r6850 12 12 <form name="form1" method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class="niceblue" width="100%">14 <table class="niceblue"> 15 15 <?php if ( get_pages() ): ?> 16 16 <tr valign="top"> -
trunk/wp-admin/options-writing.php
r6846 r6850 13 13 <?php wp_nonce_field('update-options') ?> 14 14 15 <table class="niceblue" width="100%">15 <table class="niceblue"> 16 16 <tr valign="top"> 17 17 <th scope="row"> <?php _e('Size of the post box') ?></th> … … 61 61 <p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: <code>%s</code>, <code>%s</code>, <code>%s</code>.'), wp_generate_password(), wp_generate_password(), wp_generate_password()) ?></p> 62 62 63 <table class="niceblue" width="100%">63 <table class="niceblue"> 64 64 <tr valign="top"> 65 65 <th scope="row"><?php _e('Mail Server') ?></th> -
trunk/wp-admin/wp-admin.css
r6810 r6850 878 878 border-collapse: collapse; 879 879 margin-top: 1em; 880 width: 100%; 880 881 } 881 882
Note: See TracChangeset
for help on using the changeset viewer.