summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-04-02 15:48:39 -0700
committerBrion Vibber <brion@pobox.com>2010-04-02 15:48:39 -0700
commite4d934827bd7b2162e870611662549a5df759b57 (patch)
treeb786d0fec05446fd6e1eec9cde463fc62e872beb /lib
parentd844e6bde511595ae05c60406a58b864d2607d8b (diff)
parentb42e044f6e5111fe6cb7d4a7b7431cd9b9b67ccb (diff)
Merge branch 'testing' into 0.9.x
Diffstat (limited to 'lib')
-rw-r--r--lib/noticelist.php5
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>');
}
/**