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':
'onclick' => 'return doreply("'.$this->profile->nickname.'", '.$this->notice->id.');',
'title' => _('reply'),
'class' => 'replybutton'));
- common_raw('→');
+ common_raw(' →');
common_element_end('a');
}
common_element_start('a', array('class' => 'deletenotice',
'href' => $deleteurl,
'title' => _('delete')));
- common_raw('×');
+ common_raw(' ×');
common_element_end('a');
}
}