1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Auto-requiring of helpers should stay silent when it isn't found for whatever reason

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@290 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2004-12-31 16:48:02 +00:00
parent 670fa63342
commit 2dd2b56482
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Fixed that @request.remote_ip didn't work in the test environment #369 [Bruno Mattarollo]
* Added :host and :protocol options to url_for and friends to redirect to another host and protocol than the current.

View file

@ -96,7 +96,7 @@ module ActionController #:nodoc:
inherited_without_helper(child)
begin
child.helper(child.controller_name)
rescue LoadError
rescue LoadError, StandardError
# No default helper available for this controller
end
end