diff --git a/wp-includes/media.php b/wp-includes/media.php
index 974f7cfea7..f739006c56 100644
--- a/wp-includes/media.php
+++ b/wp-includes/media.php
@@ -1312,7 +1312,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 );
}
}