From 6a54572577210d4b5df585169e2d61a6683deb71 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 12 Dec 2008 12:44:14 -0500 Subject: [PATCH] remove spaces from atlink for unfound name darcs-hash:20081212174414-84dde-03713508050c326904594057e6e2d3f3b1ca6437.gz --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.''; } }