Media: Revert [57310].
This commit reintroduced a minor data exposure issue. Props swissspidy. See #59866, #57913. Built from https://develop.svn.wordpress.org/trunk@57318 git-svn-id: http://core.svn.wordpress.org/trunk@56824 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cf88a3098c
commit
2ce808cc7f
|
@ -551,20 +551,13 @@ function redirect_canonical( $requested_url = null, $do_redirect = true ) {
|
||||||
|
|
||||||
if ( is_attachment() && ! get_option( 'wp_attachment_pages_enabled' ) ) {
|
if ( is_attachment() && ! get_option( 'wp_attachment_pages_enabled' ) ) {
|
||||||
$attachment_id = get_query_var( 'attachment_id' );
|
$attachment_id = get_query_var( 'attachment_id' );
|
||||||
$attachment_post = get_post( $attachment_id );
|
|
||||||
$attachment_parent_id = $attachment_post ? $attachment_post->post_parent : 0;
|
|
||||||
|
|
||||||
/*
|
if ( current_user_can( 'read_post', $attachment_id ) ) {
|
||||||
* If an attachment is attached to a post, it inherits the parent post's status. Fetch the
|
|
||||||
* parent post to check its status later.
|
|
||||||
*/
|
|
||||||
if ( $attachment_parent_id ) {
|
|
||||||
$redirect_obj = get_post( $attachment_parent_id );
|
|
||||||
}
|
|
||||||
$redirect_url = wp_get_attachment_url( $attachment_id );
|
$redirect_url = wp_get_attachment_url( $attachment_id );
|
||||||
|
|
||||||
$is_attachment_redirect = true;
|
$is_attachment_redirect = true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$redirect['query'] = preg_replace( '#^\??&*?#', '', $redirect['query'] );
|
$redirect['query'] = preg_replace( '#^\??&*?#', '', $redirect['query'] );
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.5-alpha-57317';
|
$wp_version = '6.5-alpha-57318';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue