REST API: Fix incorrect capability check on term create.
Change the capability check used in `WP_REST_Terms_Controller` when creating a new term is attempted, from `manage_terms` to `edit_terms`. This matches the behavior within the WordPress admin. See #35614. Props johnbillion, rmccue, rachelbaker, helen, jorbin, SergeyBiryukov. Fixes #38958. git-svn-id: https://develop.svn.wordpress.org/trunk@39402 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
6ab5804df1
commit
03b4bd4ed9
|
@ -349,7 +349,7 @@ class WP_REST_Terms_Controller extends WP_REST_Controller {
|
||||||
}
|
}
|
||||||
|
|
||||||
$taxonomy_obj = get_taxonomy( $this->taxonomy );
|
$taxonomy_obj = get_taxonomy( $this->taxonomy );
|
||||||
if ( ! current_user_can( $taxonomy_obj->cap->manage_terms ) ) {
|
if ( ! current_user_can( $taxonomy_obj->cap->edit_terms ) ) {
|
||||||
return new WP_Error( 'rest_cannot_create', __( 'Sorry, you are not allowed to create new terms.' ), array( 'status' => rest_authorization_required_code() ) );
|
return new WP_Error( 'rest_cannot_create', __( 'Sorry, you are not allowed to create new terms.' ), array( 'status' => rest_authorization_required_code() ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue