1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

ThemesHelper reopening ApplicationHelper is problem with autoloading (#20507).

Patch by Ondřej Ezr.

git-svn-id: http://svn.redmine.org/redmine/trunk@14511 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2015-08-18 06:59:24 +00:00
parent 5626ee94ed
commit d00c5f06d9

View File

@ -126,7 +126,7 @@ module Redmine
end end
end end
module ApplicationHelper module ThemesHelper
def current_theme def current_theme
unless instance_variable_defined?(:@current_theme) unless instance_variable_defined?(:@current_theme)
@current_theme = Redmine::Themes.theme(Setting.ui_theme) @current_theme = Redmine::Themes.theme(Setting.ui_theme)
@ -141,3 +141,4 @@ module ApplicationHelper
end end
end end
end end
ActionView::Base.send(:include, ThemesHelper)