Ticket #9777: 9777.2.diff
File 9777.2.diff, 2.5 KB (added by , 13 years ago) |
---|
-
wp-admin/css/colors-classic.dev.css
729 729 table.widefat span.spam a, 730 730 #dashboard_recent_comments .delete a, 731 731 #dashboard_recent_comments .trash a, 732 #dashboard_recent_comments .spam a { 732 #dashboard_recent_comments .spam a, 733 #edittag .delete a { 733 734 color: #bc0b0b; 734 735 } 735 736 … … 842 843 table.widefat .spam a:hover, 843 844 #dashboard_recent_comments .delete a:hover, 844 845 #dashboard_recent_comments .trash a:hover 845 #dashboard_recent_comments .spam a:hover { 846 #dashboard_recent_comments .spam a:hover, 847 #edittag .delete a:hover { 846 848 color: #f00; 847 849 } 848 850 -
wp-admin/css/colors-fresh.dev.css
710 710 table.widefat span.spam a, 711 711 #dashboard_recent_comments .delete a, 712 712 #dashboard_recent_comments .trash a, 713 #dashboard_recent_comments .spam a { 713 #dashboard_recent_comments .spam a, 714 #edittag .delete a { 714 715 color: #bc0b0b; 715 716 } 716 717 … … 888 889 table.widefat .spam a:hover, 889 890 #dashboard_recent_comments .delete a:hover, 890 891 #dashboard_recent_comments .trash a:hover 891 #dashboard_recent_comments .spam a:hover { 892 #dashboard_recent_comments .spam a:hover, 893 #edittag .delete a:hover { 892 894 color: #f00; 893 895 } 894 896 -
wp-admin/edit-tag-form.php
87 87 88 88 do_action($taxonomy . '_edit_form', $tag, $taxonomy); 89 89 90 submit_button( __('Update') );90 submit_button( __('Update'), 'primary', NULL, false, NULL ); 91 91 ?> 92 <span class="delete"> 93 <a class="delete-tag" href="<?php echo wp_nonce_url( "edit-tags.php?action=delete&taxonomy=$taxonomy&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) ?>"'><?php _e( 'Delete' ); ?></a> 94 </span> 92 95 </form> 93 96 </div> -
wp-admin/edit-tags.php
87 87 88 88 wp_delete_term( $tag_ID, $taxonomy ); 89 89 90 $location = remove_query_arg( array( 'tag_ID', 'action', '_wpnonce' ) ); 90 91 $location = add_query_arg( 'message', 2, $location ); 92 91 93 wp_redirect( $location ); 92 94 exit; 93 95