summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2008-12-16 01:37:51 -0500
committerSarven Capadisli <csarven@controlyourself.ca>2008-12-16 01:37:51 -0500
commitc0977dfa1b03a65d420c2de75cfc72b1694b4b44 (patch)
tree019d9c09576957d5a7d15e59fc1b09cc4d5422aa
parentb801f73b1f4706f15783f91fd07508a03175592d (diff)
XHR response fix for IE
darcs-hash:20081216063751-efd22-42fa56ae88c444b80d96c25236733e90f8609fc5.gz
-rw-r--r--lib/noticelist.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php
index 92a44c1c3..5b65f586f 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('&rarr;');
+ common_raw(' &#8594;');
common_element_end('a');
}
@@ -209,7 +209,7 @@ class NoticeListItem {
common_element_start('a', array('class' => 'deletenotice',
'href' => $deleteurl,
'title' => _('delete')));
- common_raw('&times;');
+ common_raw(' &#215;');
common_element_end('a');
}
}