Commit cfca7cb836ffe891d398fd92f8bdc3db976eb298
1 parent
75e97ffa
Exists in
staging
and in
42 other branches
ActionItem1055: can't use string with spaces
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
app/sweepers/category_sweeper.rb
app/views/layouts/application.rhtml
... | ... | @@ -87,7 +87,7 @@ |
87 | 87 | :id=>"menu_link_to_envhome", |
88 | 88 | :title=>@environment.name %> |
89 | 89 | <% unless environment.enabled?(:disable_categories) %> |
90 | - <% cache(environment.name + '_categories_menu') do %> | |
90 | + <% cache(environment.name.id.to_s + '_categories_menu') do %> | |
91 | 91 | <%= render :file => 'shared/categories_menu' %> |
92 | 92 | <% end %> |
93 | 93 | <% end %> | ... | ... |