summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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('→');
+ 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');
}
}