Changeset 24824
- Timestamp:
- 07/28/2013 09:06:19 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-terms-list-table.php
r24380 r24824 260 260 if ( current_user_can( $tax->cap->delete_terms ) && $tag->term_id != $default_term ) 261 261 $actions['delete'] = "<a class='delete-tag' href='" . wp_nonce_url( "edit-tags.php?action=delete&taxonomy=$taxonomy&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) . "'>" . __( 'Delete' ) . "</a>"; 262 $actions['view'] = '<a href="' . get_term_link( $tag ) . '">' . __( 'View' ) . '</a>'; 262 if ( $tax->public ) 263 $actions['view'] = '<a href="' . get_term_link( $tag ) . '">' . __( 'View' ) . '</a>'; 263 264 264 265 $actions = apply_filters( 'tag_row_actions', $actions, $tag );
Note: See TracChangeset
for help on using the changeset viewer.