From c0977dfa1b03a65d420c2de75cfc72b1694b4b44 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Tue, 16 Dec 2008 01:37:51 -0500 Subject: [PATCH] XHR response fix for IE darcs-hash:20081216063751-efd22-42fa56ae88c444b80d96c25236733e90f8609fc5.gz --- lib/noticelist.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/noticelist.php b/lib/noticelist.php index 92a44c1c35..5b65f586fc 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -157,7 +157,7 @@ class NoticeListItem { function show_notice_source() { if ($this->notice->source) { - common_text(_(' from ')); + common_element('span', null, _(' from ')); $source_name = _($this->notice->source); switch ($source) { case 'web': @@ -198,7 +198,7 @@ class NoticeListItem { 'onclick' => 'return doreply("'.$this->profile->nickname.'", '.$this->notice->id.');', 'title' => _('reply'), 'class' => 'replybutton')); - common_raw('→'); + common_raw(' →'); common_element_end('a'); } @@ -209,7 +209,7 @@ class NoticeListItem { common_element_start('a', array('class' => 'deletenotice', 'href' => $deleteurl, 'title' => _('delete'))); - common_raw('×'); + common_raw(' ×'); common_element_end('a'); } }