From 6d5891cb5de525ba1c2ab1b593cbc14c3c1ea801 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Sat, 21 Feb 2004 15:22:34 +0000 Subject: [PATCH] Some formatting fixes. git-svn-id: http://svn.automattic.com/wordpress/trunk@903 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-functions-comment.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/wp-includes/template-functions-comment.php b/wp-includes/template-functions-comment.php index 32738bf401..cb74fcca3d 100644 --- a/wp-includes/template-functions-comment.php +++ b/wp-includes/template-functions-comment.php @@ -170,9 +170,7 @@ function comment_author_url_link($linktext='', $before='', $after='') { if ((!empty($url)) && ($url != 'http://') && ($url != 'http://url')) { $display = ($linktext != '') ? $linktext : stripslashes($url); - echo $before; - echo ''.$display.''; - echo $after; + echo "$before$display$after"; } } @@ -237,7 +235,7 @@ function comments_rss_link($link_text='Comments RSS', $commentsrssfilename = 'wp $url = $siteurl.'/'.$commentsrssfilename.$querystring_start.'p'.$querystring_equal.$id; } - echo ''.$link_text.''; + echo "$link_text"; } function comment_author_rss() {