From 5cc69b53cf56ede54105f85661a8a0716cc37bca Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Thu, 29 May 2014 13:10:10 +0200 Subject: [PATCH] Remove superfluous space in prefixedTimeSince refs #5981 --- library/Icinga/Web/View/helpers/format.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Web/View/helpers/format.php b/library/Icinga/Web/View/helpers/format.php index 60861e7ee..e62162ccc 100644 --- a/library/Icinga/Web/View/helpers/format.php +++ b/library/Icinga/Web/View/helpers/format.php @@ -18,7 +18,7 @@ $this->addHelperFunction('timeSince', function ($timestamp) { $this->addHelperFunction('prefixedTimeSince', function ($timestamp, $ucfirst = false) { return '' . Format::prefixedTimeSince($timestamp, $ucfirst) - . ' '; + . ''; }); $this->addHelperFunction('timeUntil', function ($timestamp) {