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