From c382a1d8cce0942b3d522b1edc499efdf4a52c44 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 9 Apr 2011 17:05:59 -0400 Subject: [PATCH] fix errant class in notice content --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 819dcc5058..e3f2555bab 100644 --- a/lib/util.php +++ b/lib/util.php @@ -638,7 +638,7 @@ function common_linkify_mention($mention) $xs->elementStart('span', 'vcard'); $xs->elementStart('a', $attrs); - $xs->element('span', 'fn nickname profile', $mention['text']); + $xs->element('span', 'fn nickname mention', $mention['text']); $xs->elementEnd('a'); $xs->elementEnd('span'); -- 2.39.5