Feeds: Don't treat media URLs with fragments as unique for enclosures.
Props archduck, dshanske. Fixes #47421. Built from https://develop.svn.wordpress.org/trunk@49552 git-svn-id: http://core.svn.wordpress.org/trunk@49290 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8562263fd6
commit
c57ce00691
@ -899,6 +899,8 @@ function do_enclose( $content, $post ) {
|
|||||||
$post_links = apply_filters( 'enclosure_links', $post_links, $post->ID );
|
$post_links = apply_filters( 'enclosure_links', $post_links, $post->ID );
|
||||||
|
|
||||||
foreach ( (array) $post_links as $url ) {
|
foreach ( (array) $post_links as $url ) {
|
||||||
|
$url = strip_fragment_from_url( $url );
|
||||||
|
|
||||||
if ( '' !== $url && ! $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = 'enclosure' AND meta_value LIKE %s", $post->ID, $wpdb->esc_like( $url ) . '%' ) ) ) {
|
if ( '' !== $url && ! $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = 'enclosure' AND meta_value LIKE %s", $post->ID, $wpdb->esc_like( $url ) . '%' ) ) ) {
|
||||||
|
|
||||||
$headers = wp_get_http_headers( $url );
|
$headers = wp_get_http_headers( $url );
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.6-beta3-49551';
|
$wp_version = '5.6-beta3-49552';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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
Block a user