From 3e85312bbf4dc7c3c16d18f407726f303115525d Mon Sep 17 00:00:00 2001 From: Helen Hou-Sandi Date: Thu, 3 Dec 2015 17:16:57 +0000 Subject: [PATCH] Media: Avoid `rel="rel="` situations. props lucymtc, swissspidy. fixes #34826. see #32074. git-svn-id: https://develop.svn.wordpress.org/trunk@35760 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/ajax-actions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/ajax-actions.php b/src/wp-admin/includes/ajax-actions.php index d96a2fba0b..58734452f9 100644 --- a/src/wp-admin/includes/ajax-actions.php +++ b/src/wp-admin/includes/ajax-actions.php @@ -2570,7 +2570,7 @@ function wp_ajax_send_attachment_to_editor() { $rel = ''; $url = empty( $attachment['url'] ) ? '' : $attachment['url']; if ( strpos( $url, 'attachment_id') || get_attachment_link( $id ) == $url ) { - $rel = ' rel="attachment wp-att-' . $id . '"'; + $rel = 'attachment wp-att-' . $id; } remove_filter( 'media_send_to_editor', 'image_media_send_to_editor' ); @@ -2593,7 +2593,7 @@ function wp_ajax_send_attachment_to_editor() { } else { $html = isset( $attachment['post_title'] ) ? $attachment['post_title'] : ''; if ( ! empty( $url ) ) { - $html = '' . $html . ''; + $html = '' . $html . ''; } }