From 238b2fd670aea35cd219ca8465c780447cc4a116 Mon Sep 17 00:00:00 2001 From: Carsten Otto Date: Tue, 28 Feb 2017 22:16:48 +0100 Subject: [PATCH] add missing space bug introduced in c46e5a9e1d45f39f30464c16fb4c1606b1833ce7 fixes #2063 --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index f0c30f64..16ff38f0 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -96,7 +96,7 @@ module ApplicationHelper when "ends_on_end_date" starts = time_span_text(rt.start_from, I18n.t("todos.recurrence.pattern.from")) ends = time_span_text(rt.end_date, I18n.t("todos.recurrence.pattern.until")) - return starts+ends + return starts + " " + ends else raise Exception.new, "unknown recurrence time span selection (#{rt.ends_on})" end