Ticket 2271: extra whitespace in underlined link for username in notice lists

Switching to a raw() output for the <span> of the nickname removes the extra whitespace and fixes display.
This commit is contained in:
Brion Vibber 2010-04-02 09:32:03 -07:00
parent 9f2cfd20f8
commit b10ff031d9
1 changed files with 3 additions and 2 deletions

View File

@ -340,8 +340,9 @@ class NoticeListItem extends Widget
function showNickname()
{
$this->out->element('span', array('class' => 'nickname fn'),
$this->profile->nickname);
$this->out->raw('<span class="nickname fn">' .
htmlspecialchars($this->profile->nickname) .
'</span>');
}
/**