Merge pull request #125 from maddentim/fixes-recurring

Eliminating unneeded blank space character from show_date_tag
This commit is contained in:
Reinier Balt 2012-12-01 01:07:50 -08:00
commit 923cd70058

View file

@ -188,7 +188,7 @@ module TodosHelper
def show_date_tag(date, the_class, text)
content_tag(:a, :title => format_date(date)) do
content_tag(:span, :class => the_class) { text + " "}
content_tag(:span, :class => the_class) { text }
end
end