]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
XHR response fix for IE
authorSarven Capadisli <csarven@controlyourself.ca>
Tue, 16 Dec 2008 06:37:51 +0000 (01:37 -0500)
committerSarven Capadisli <csarven@controlyourself.ca>
Tue, 16 Dec 2008 06:37:51 +0000 (01:37 -0500)
darcs-hash:20081216063751-efd22-42fa56ae88c444b80d96c25236733e90f8609fc5.gz

lib/noticelist.php

index 92a44c1c35c2b2fb386a38ff28b5f29259ed2118..5b65f586fc8297c0ed9044772f375ca10fe168ab 100644 (file)
@@ -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');
                }
     }