From: Evan Prodromou Date: Thu, 21 Apr 2011 16:00:10 +0000 (-0400) Subject: show the full name for likes X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9fcda5b2da435e1e522028bd1a161a6b3916b330;p=quix0rs-gnu-social.git show the full name for likes --- diff --git a/lib/threadednoticelist.php b/lib/threadednoticelist.php index fc212a5239..72b8356b6c 100644 --- a/lib/threadednoticelist.php +++ b/lib/threadednoticelist.php @@ -410,10 +410,9 @@ abstract class NoticeListActorsItem extends NoticeListItem } else { $profile = Profile::staticGet('id', $id); if ($profile) { - $links[] = sprintf('%s', + $links[] = sprintf('%s', htmlspecialchars($profile->profileurl), - htmlspecialchars($profile->getBestName()), - htmlspecialchars($profile->nickname)); + htmlspecialchars($profile->getBestName())); } } }