From: Jean Baptiste Favre Date: Sun, 4 Sep 2011 19:44:18 +0000 (+0200) Subject: Fix a UI typo which appear when using $config['site']['indent'] = null X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=65bf58be806d19bc7fe962c0824160deab07d5c3;p=quix0rs-gnu-social.git 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. --- 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);