From: Sarven Capadisli Date: Tue, 16 Dec 2008 06:37:51 +0000 (-0500) Subject: XHR response fix for IE X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c0977dfa1b03a65d420c2de75cfc72b1694b4b44;p=quix0rs-gnu-social.git XHR response fix for IE darcs-hash:20081216063751-efd22-42fa56ae88c444b80d96c25236733e90f8609fc5.gz --- 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'); } }