diff options
author | Brion Vibber <brion@pobox.com> | 2010-04-02 15:48:39 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-02 15:48:39 -0700 |
commit | e4d934827bd7b2162e870611662549a5df759b57 (patch) | |
tree | b786d0fec05446fd6e1eec9cde463fc62e872beb /lib | |
parent | d844e6bde511595ae05c60406a58b864d2607d8b (diff) | |
parent | b42e044f6e5111fe6cb7d4a7b7431cd9b9b67ccb (diff) |
Merge branch 'testing' into 0.9.x
Diffstat (limited to 'lib')
-rw-r--r-- | lib/noticelist.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index 0d4cd4dd9..83c8de9f6 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -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>'); } /** |