From bec3e712923debf021753f5a09c54d6ef2877ed4 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 8 Sep 2005 21:40:37 +0000 Subject: [PATCH] Fix before/after spacing. Props mjsteinbaugh. fixes #1588 git-svn-id: http://svn.automattic.com/wordpress/trunk@2859 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 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 +?>