diff --git a/wp-includes/class-wp-embed.php b/wp-includes/class-wp-embed.php index 9404ba408a..c5381846f4 100644 --- a/wp-includes/class-wp-embed.php +++ b/wp-includes/class-wp-embed.php @@ -270,7 +270,7 @@ class WP_Embed { * @return string Linked URL or the original URL. */ function maybe_make_link( $url ) { - $output = ( $this->linkifunknown ) ? '' . esc_html($url) . '' : $url; + $output = ( $this->linkifunknown ) ? '' . esc_html($url) . '' : $url; return apply_filters( 'embed_maybe_make_link', $output, $url ); } }