Slight change to engines to let plugins override views.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1723 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
2e4e9b88d2
commit
361138e16d
|
@ -88,7 +88,7 @@ module Engines
|
|||
def add_plugin_view_paths
|
||||
view_path = File.join(directory, 'app', 'views')
|
||||
if File.exist?(view_path)
|
||||
ActionController::Base.view_paths.insert(1, view_path) # push it just underneath the app
|
||||
ActionController::Base.prepend_view_path(view_path) # push it just underneath the app
|
||||
ActionView::TemplateFinder.process_view_paths(view_path)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue