From 28fbadb064a2739cf84b9c2d58ce01fc4b6859b3 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 8 Sep 2005 21:40:37 +0000 Subject: [PATCH] Fix before/after spacing. Props mjsteinbaugh. fixes #1588 git-svn-id: https://develop.svn.wordpress.org/trunk@2859 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions-links.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/template-functions-links.php b/wp-includes/template-functions-links.php index 498f0444dd..308ef093d4 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 +?>