From 65bf58be806d19bc7fe962c0824160deab07d5c3 Mon Sep 17 00:00:00 2001 From: Jean Baptiste Favre Date: Sun, 4 Sep 2011 21:44:18 +0200 Subject: [PATCH] Fix a UI typo which appear when using $config['site']['indent'] = null Add whitespace after _('Repeated by') as it's done in showNoticeSource function Typo only appear when minifying HTML and not in normal mode because of TAB inserted. --- lib/noticelist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/noticelist.php b/lib/noticelist.php index 7b2fbb1e7c..86b0b89604 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -617,6 +617,7 @@ class NoticeListItem extends Widget $this->out->elementStart('span', 'repeat vcard'); $this->out->raw(_('Repeated by')); + $this->out->raw(' '); $this->out->elementStart('a', $attrs); $this->out->element('span', 'fn nickname', $repeater->nickname);