【发布时间】:2016-06-01 20:34:10
【问题描述】:
我在迁移插件之前犯了一个错误,并写了
flash[:notice] = :label_presta_added
而不是
flash[:notice] = l(:label_presta_added)
我纠正了我的错误,但似乎我的 Redmine 插件破坏了我的 Redmine。即使我再次删除我的插件迁移,我仍然收到此错误:
Started GET "/" for 127.0.0.1 at 2016-06-01 22:21:37 +0200
Processing by WelcomeController#index as HTML
Current user: admin (id=1)
Rendered welcome/index.html.erb within layouts/base (28.1ms)
Completed 500 Internal Server Error in 366ms (ActiveRecord: 116.0ms)
ActionView::Template::Error (undefined method `html_safe' for :label_presta_added:Symbol
Did you mean? html_safe?):
97: <div id="sidebar">
98: <%= yield :sidebar %>
99: <%= view_layouts_base_sidebar_hook_response %>
100: </div>
101:
102: <div id="content">
103: <%= render_flash_messages %>
app/helpers/application_helper.rb:312:in `block in render_flash_messages'
app/helpers/application_helper.rb:311:in `render_flash_messages'
app/views/layouts/base.html.erb:100:in `_app_views_layouts_base_html_erb__4104276684161420982_39604440'
lib/redmine/sudo_mode.rb:63:in `sudo_mode'
有人可以帮帮我吗? 提前致谢!
【问题讨论】:
标签: ruby-on-rails ruby plugins redmine