From: Evan Prodromou Date: Fri, 12 Dec 2008 17:44:14 +0000 (-0500) Subject: remove spaces from atlink for unfound name X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6a54572577210d4b5df585169e2d61a6683deb71;p=quix0rs-gnu-social.git remove spaces from atlink for unfound name darcs-hash:20081212174414-84dde-03713508050c326904594057e6e2d3f3b1ca6437.gz --- diff --git a/lib/util.php b/lib/util.php index f128b5d867..cc294b8f28 100644 --- a/lib/util.php +++ b/lib/util.php @@ -938,7 +938,7 @@ function common_at_link($sender_id, $nickname) { if ($recipient) { return ''.$nickname.''; } else { - return ' '.$nickname.' '; + return ''.$nickname.''; } }