From e67aa0f272c821163566df473c7bee2c1b37b1bf Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sat, 21 Feb 2004 15:22:34 +0000 Subject: [PATCH] Some formatting fixes. git-svn-id: https://develop.svn.wordpress.org/trunk@903 602fd350-edb4-49c9-b593-d223f7449a82 --- 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() {