# HG changeset patch # User Chris Cannam # Date 1371561051 -3600 # Node ID 5ed688bfd4413338135cce7eb21eb0692c909c56 # Parent 3783c5b32eb3eb61892ac1b9906eff839c2738b0 Fix incorrect link through from project explore page to tags-filtered projects list diff -r 3783c5b32eb3 -r 5ed688bfd441 plugins/redmine_tags/app/helpers/tags_helper.rb --- 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')