Remove superfluous space in prefixedTimeSince

refs #5981
This commit is contained in:
Gunnar Beutner 2014-05-29 13:10:10 +02:00
parent f767fb2de3
commit 5cc69b53cf
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ $this->addHelperFunction('timeSince', function ($timestamp) {
$this->addHelperFunction('prefixedTimeSince', function ($timestamp, $ucfirst = false) {
return '<span class="timesince">'
. Format::prefixedTimeSince($timestamp, $ucfirst)
. ' </span>';
. '</span>';
});
$this->addHelperFunction('timeUntil', function ($timestamp) {