diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 7643668af..2ef9d5455 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -2204,7 +2204,7 @@ function wp_shortlink_wp_head() { if ( empty( $shortlink ) ) return; - echo "\n"; + echo "\n"; } /** @@ -2254,7 +2254,7 @@ function the_shortlink( $text = '', $title = '', $before = '', $after = '' ) { $shortlink = wp_get_shortlink( $post->ID ); if ( !empty( $shortlink ) ) { - $link = '' . $text . ''; + $link = '' . $text . ''; $link = apply_filters( 'the_shortlink', $link, $shortlink, $text, $title ); echo $before, $link, $after; }