XHR response fix for IE

darcs-hash:20081216063751-efd22-42fa56ae88c444b80d96c25236733e90f8609fc5.gz
This commit is contained in:
Sarven Capadisli 2008-12-16 01:37:51 -05:00
parent b801f73b1f
commit c0977dfa1b
1 changed files with 3 additions and 3 deletions

View 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('→');
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');
}
}