mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-20 19:56:49 +01:00
REST API: Avoid counting an uncountable type when checking read permissions for comment posts.
This avoids deprecated notices from showing in PHP 7.2 and above. Props ayeshrajans Fixes #41457 Built from https://develop.svn.wordpress.org/trunk@41735 git-svn-id: http://core.svn.wordpress.org/trunk@41569 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
54ff178923
commit
090dfae53e
|
|
@ -1513,7 +1513,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
|
|||
$has_password_filter = false;
|
||||
|
||||
// Only check password if a specific post was queried for or a single comment
|
||||
$requested_post = ! empty( $request['post'] ) && 1 === count( $request['post'] );
|
||||
$requested_post = ! empty( $request['post'] ) && ( !is_array( $request['post'] ) || 1 === count( $request['post'] ) );
|
||||
$requested_comment = ! empty( $request['id'] );
|
||||
if ( ( $requested_post || $requested_comment ) && $posts_controller->can_access_password_content( $post, $request ) ) {
|
||||
add_filter( 'post_password_required', '__return_false' );
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-alpha-41734';
|
||||
$wp_version = '4.9-alpha-41735';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user