Changeset 40655 for trunk/src/wp-admin/edit-tag-form.php
- Timestamp:
- 05/12/2017 07:25:43 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/edit-tag-form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tag-form.php
r40146 r40655 255 255 */ 256 256 do_action( "{$taxonomy}_edit_form", $tag, $taxonomy ); 257 258 submit_button( __('Update') );259 257 ?> 258 259 <div class="edit-tag-actions"> 260 261 <?php submit_button( __( 'Update' ), 'primary', null, false ); ?> 262 263 <?php if ( current_user_can( 'delete_term', $tag->term_id ) ) : ?> 264 <span id="delete-link"> 265 <a class="delete" href="<?php echo admin_url( wp_nonce_url( "edit-tags.php?action=delete&taxonomy=$taxonomy&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) ) ?>"'><?php _e( 'Delete' ); ?></a> 266 </span> 267 <?php endif; ?> 268 269 </div> 270 260 271 </form> 261 272 </div>
Note: See TracChangeset
for help on using the changeset viewer.