Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

undefined method `link_to_project_tag_filter' on Settings tab #44

Open
logical-and opened this issue Jan 29, 2013 · 1 comment
Open

Comments

@logical-and
Copy link

ActionView::Template::Error (undefined methodlink_to_project_tag_filter' for #<#Class:0x00000004f52ce8:0x000000060312a8>):
10: <% for issue_tag in tags %>
11:
12:
13: <%= link_to_project_tag_filter(@project, issue_tag.name) %>
14:
15:
16: <%= link_to(l(:detach), {:controller => 'issue_tags', :action => 'destroy', :id => issue_tag.id,
app/views/common/_tabs.html.erb:24:in block in _app_views_common__tabs_html_erb__3640568420189664632_58651720' app/views/common/_tabs.html.erb:23:in each'
app/views/common/_tabs.html.erb:23:in _app_views_common__tabs_html_erb__3640568420189664632_58651720' app/helpers/application_helper.rb:263:in render_tabs'
app/views/projects/settings.html.erb:3:in _app_views_projects_settings_html_erb___3514565881336922162_51113100'

@geraldo7junior
Copy link

I think that is a plugin helper issue. The TaggingHelper module that is defined in app/helpers/tagging_helper.rb isn't correctly included (4 some reason 😅 ) on application's path.

To 'solve' it, I just included that piece of code on init.rb

require File.expand_path('../app/helpers/tagging_helper', __FILE__)
ActionView::Base.send :include, TaggingHelper

That obviously is not the best solution, but it works for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants