Commit 39a99d9d1325450636c2c6b009c2187d3a6b9026
1 parent
f1e0dc83
Exists in
master
and in
29 other branches
Fixed: Pending tasks were not being listed
When trying to render "partial_for_class" there was the "stack level too deep" error
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/application_helper.rb
... | ... | @@ -282,7 +282,7 @@ module ApplicationHelper |
282 | 282 | return name if File.exists?(File.join(path)) |
283 | 283 | end |
284 | 284 | |
285 | - partial_for_class_in_view_path(klass.superclass, view_path) | |
285 | + partial_for_class_in_view_path(klass.superclass, view_path, suffix) | |
286 | 286 | end |
287 | 287 | |
288 | 288 | def partial_for_class(klass, suffix=nil) | ... | ... |