Ticket #15064: 15064.4.diff
File 15064.4.diff, 1.4 KB (added by , 13 years ago) |
---|
-
wp-admin/edit-form-comment.php
71 71 <?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url("comment.php?action=" . ( !EMPTY_TRASH_DAYS ? 'deletecomment' : 'trashcomment' ) . "&c=$comment->comment_ID&_wp_original_http_referer=" . urlencode(wp_get_referer()), 'delete-comment_' . $comment->comment_ID) . "'>" . ( !EMPTY_TRASH_DAYS ? __('Delete Permanently') : __('Move to Trash') ) . "</a>\n"; ?> 72 72 </div> 73 73 <div id="publishing-action"> 74 <?php submit_button( __( 'Update Comment' ), 'primary', 'save', true, array( 'tabindex' => '4' ) ); ?>74 <?php submit_button( __( 'Update Comment' ), 'primary', 'save', false, array( 'tabindex' => '4' ) ); ?> 75 75 </div> 76 76 <div class="clear"></div> 77 77 </div> -
wp-admin/edit-tags.php
338 338 do_action('add_tag_form_fields', $taxonomy); 339 339 do_action($taxonomy . '_add_form_fields', $taxonomy); 340 340 341 submit_button( $tax->labels->add_new_item );341 submit_button( $tax->labels->add_new_item, 'button' ); 342 342 343 343 // Back compat hooks. Deprecated in preference to {$taxonomy}_add_form 344 344 if ( 'category' == $taxonomy )