Changeset 9538
- Timestamp:
- 11/05/2008 10:52:59 PM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-footer.php
r9393 r9538 8 8 ?> 9 9 10 < br class="clear" /></div><!-- wpbody-content -->10 <div class="clear" /></div></div><!-- wpbody-content --> 11 11 </div><!-- wpbody --> 12 < br class="clear" /></div><!-- wpcontent -->12 <div class="clear" /></div></div><!-- wpcontent --> 13 13 </div><!-- wpwrap --> 14 14 -
trunk/wp-admin/css/global.css
r9532 r9538 15 15 border: 0; 16 16 outline: 0; 17 font-size: 100%;18 vertical-align: baseline; 17 /* font-size: 100%; 18 vertical-align: baseline; */ 19 19 background: transparent; 20 20 } … … 49 49 50 50 /* tables still need 'cellspacing="0"' in the markup */ 51 /* 51 52 table { 52 53 border-collapse: collapse; 53 54 border-spacing: 0; 54 55 } 56 */ 55 57 /* end reset css */ 56 58 … … 148 150 body, 149 151 td { 150 font: 13px /19px"Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;152 font: 13px "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; 151 153 } 152 154 -
trunk/wp-admin/edit-category-form.php
r9294 r9538 12 12 if ( ! isset( $category ) ) 13 13 $category = (object) array(); 14 15 if ( ! empty($cat_ID) ) {16 /**17 * @var string18 */19 $heading = '';20 $submit_text = __('Edit Category');21 $form = '<form name="editcat" id="editcat" method="post" action="categories.php" class="validate">';22 $action = 'editedcat';23 $nonce_action = 'update-category_' . $cat_ID;24 do_action('edit_category_form_pre', $category);25 } else {26 $heading = '<h2>' . __('Add Category') . '</h2>';27 $submit_text = __('Add Category');28 $form = '<form name="addcat" id="addcat" method="post" action="categories.php" class="add:the-list: validate">';29 $action = 'addcat';30 $nonce_action = 'add-category';31 do_action('add_category_form_pre', $category);32 }33 14 34 15 /** … … 53 34 } 54 35 36 do_action('edit_category_form_pre', $category); 37 55 38 _fill_empty_category($category); 56 39 ?> 57 40 58 41 <div class="wrap"> 59 < ?php echo $heading ?>42 <h2><?php _e('Edit Category'); ?></h2> 60 43 <div id="ajax-response"></div> 61 < ?php echo $form ?>62 <input type="hidden" name="action" value=" <?php echo $action ?>" />44 <form name="editcat" id="editcat" method="post" action="categories.php" class="validate"> 45 <input type="hidden" name="action" value="editedcat" /> 63 46 <input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" /> 64 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field( $nonce_action); ?>47 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-category_' . $cat_ID); ?> 65 48 <table class="form-table"> 66 49 <tr class="form-field form-required"> … … 87 70 </tr> 88 71 </table> 89 <p class="submit"><input type="submit" class="button" name="submit" value="<?php echo $submit_text?>" /></p>72 <p class="submit"><input type="submit" class="button" name="submit" value="<?php _e('Edit Category'); ?>" /></p> 90 73 <?php do_action('edit_category_form', $category); ?> 91 74 </form> -
trunk/wp-admin/plugins.php
r9362 r9538 168 168 wp_enqueue_script('admin-forms'); 169 169 wp_enqueue_script('plugin-install'); 170 add_thickbox();171 170 172 171 $title = __('Manage Plugins'); -
trunk/wp-admin/wp-admin.css
r9536 r9538 15 15 .plugins .togl { 16 16 width: 150px; 17 border-right-width: 1px;18 border-right-style: solid;19 17 } 20 18 … … 2930 2928 border-radius: 6px; 2931 2929 } 2930 2931 #flash-upload-ui { 2932 padding: 20px 12px 0; 2933 }
Note: See TracChangeset
for help on using the changeset viewer.