From 32af610a1bd73e9b0ab16870c52ca670f4a9cee3 Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Sat, 8 Oct 2011 21:32:15 -0500 Subject: [PATCH] Fix missing links for tags in the recurring todo view The helper method for the recurring todo tag list was missing additions of the links --- app/helpers/recurring_todos_helper.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/helpers/recurring_todos_helper.rb b/app/helpers/recurring_todos_helper.rb index 9bc0d04f..7cea9601 100644 --- a/app/helpers/recurring_todos_helper.rb +++ b/app/helpers/recurring_todos_helper.rb @@ -3,9 +3,8 @@ module RecurringTodosHelper def recurring_todo_tag_list tags_except_starred = @recurring_todo.tags.reject{|t| t.name == Todo::STARRED_TAG_NAME} tag_list = tags_except_starred.collect{|t| "" + - # link_to(t.name, :controller => "todos", :action => "tag", :id => - # t.name) + TODO: tag view for recurring_todos (yet?) - t.name + + link_to(t.name, :controller => "todos", :action => "tag", :id => + t.name) + #TODO: tag view for recurring_todos (yet?) ""}.join('') "#{tag_list}" end