changeset 1309:5ed688bfd441 redmine-2.2-integration

Fix incorrect link through from project explore page to tags-filtered projects list
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 18 Jun 2013 14:10:51 +0100
parents 3783c5b32eb3
children c0eedaadb1f2
files plugins/redmine_tags/app/helpers/tags_helper.rb
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/redmine_tags/app/helpers/tags_helper.rb	Mon Jun 17 16:14:45 2013 +0100
+++ b/plugins/redmine_tags/app/helpers/tags_helper.rb	Tue Jun 18 14:10:51 2013 +0100
@@ -91,7 +91,7 @@
 
       content = content.html_safe
       tag_cloud tags, (1..8).to_a do |tag, weight|
-        content << " ".html_safe + content_tag(item_el, render_tag_link(tag, options), :class => "tag-nube-#{weight}") + " ".html_safe
+        content << " ".html_safe + content_tag(item_el, render_project_tag_link(tag, options), :class => "tag-nube-#{weight}") + " ".html_safe
       end
 
       content_tag(list_el, content, :class => 'tags')