From: Evan Prodromou Date: Sat, 9 Apr 2011 21:05:59 +0000 (-0400) Subject: fix errant class in notice content X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c382a1d8cce0942b3d522b1edc499efdf4a52c44;p=quix0rs-gnu-social.git fix errant class in notice content --- 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');