Taxonomy: Revert accidental changes introduced in [38578].

See #18302

Built from https://develop.svn.wordpress.org/trunk@38579


git-svn-id: http://core.svn.wordpress.org/trunk@38522 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2016-09-08 22:58:28 +00:00
parent c0bb9c2562
commit e6e6cbf21f
2 changed files with 3 additions and 3 deletions

View File

@ -930,7 +930,7 @@ function get_edit_term_link( $term_id, $taxonomy = '', $object_type = '' ) {
}
$tax = get_taxonomy( $term->taxonomy );
if ( ! $tax || ! current_user_can( 'edit_term', $term->term_id ) ) {
if ( ! $tax || ! current_user_can( $tax->cap->edit_terms ) ) {
return;
}
@ -984,7 +984,7 @@ function edit_term_link( $link = '', $before = '', $after = '', $term = null, $e
return;
$tax = get_taxonomy( $term->taxonomy );
if ( ! current_user_can( 'edit_term', $term->term_id ) ) {
if ( ! current_user_can( $tax->cap->edit_terms ) ) {
return;
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-alpha-38578';
$wp_version = '4.7-alpha-38579';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.