]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix a UI typo which appear when using $config['site']['indent'] = null
authorJean Baptiste Favre <statusnet@jbfavre.org>
Sun, 4 Sep 2011 19:44:18 +0000 (21:44 +0200)
committerJean Baptiste Favre <statusnet@jbfavre.org>
Sun, 4 Sep 2011 19:44:18 +0000 (21:44 +0200)
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

index 7b2fbb1e7cad51a7fb22b164c25a72496587c4b6..86b0b896046f136c75bbcac56a741128556a9f77 100644 (file)
@@ -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);