diff --git a/wp-includes/template-functions-links.php b/wp-includes/template-functions-links.php index 498f0444d..308ef093d 100644 --- a/wp-includes/template-functions-links.php +++ b/wp-includes/template-functions-links.php @@ -179,7 +179,7 @@ function edit_post_link($link = 'Edit This', $before = '', $after = '') { } $location = get_settings('siteurl') . "/wp-admin/post.php?action=edit&post=$post->ID"; - echo "$before $link $after"; + echo "$before $link" . $after; } function edit_comment_link($link = 'Edit This', $before = '', $after = '') { @@ -192,7 +192,7 @@ function edit_comment_link($link = 'Edit This', $before = '', $after = '') { } $location = get_settings('siteurl') . "/wp-admin/post.php?action=editcomment&comment=$comment->comment_ID"; - echo "$before $link $after"; + echo "$before $link" . $after; } // Navigation links @@ -496,4 +496,4 @@ function posts_nav_link($sep=' — ', $prelabel='« Previous Page', $nx } } -?> \ No newline at end of file +?>