# HG changeset patch # User Chris Cannam # Date 1358265345 0 # Node ID 13ab8b6e813288ec0a9996b913d7e59b0104b436 # Parent 2f6e71e31b55f6e428d9f398df46528b4edf7d9d A couple of further html_safes diff -r 2f6e71e31b55 -r 13ab8b6e8132 plugins/redmine_tags/lib/redmine_tags/patches/projects_helper_patch.rb --- a/plugins/redmine_tags/lib/redmine_tags/patches/projects_helper_patch.rb Tue Jan 15 15:51:29 2013 +0000 +++ b/plugins/redmine_tags/lib/redmine_tags/patches/projects_helper_patch.rb Tue Jan 15 15:55:45 2013 +0000 @@ -162,7 +162,7 @@ ancestors.size.times{ s << "" } @project = original_project end - s.join "\n" + (s.join "\n").html_safe end # Renders a tree of projects where the current user belongs @@ -191,7 +191,7 @@ s = a end - s + s.html_safe end