diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-25 18:05:22 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-25 18:05:22 +0000 |
commit | 20b14e0d3809d9af8e53dcf598a74362adbd7439 (patch) | |
tree | 4a372c07c703f353cec402891ac4399c340fc8fe | |
parent | ee662e9768f3682389daaa54d38c3e46cdcd4408 (diff) | |
download | rails-20b14e0d3809d9af8e53dcf598a74362adbd7439.tar.gz rails-20b14e0d3809d9af8e53dcf598a74362adbd7439.tar.bz2 rails-20b14e0d3809d9af8e53dcf598a74362adbd7439.zip |
Comply to the new dependency reload system
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@508 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | actionpack/lib/action_controller/helpers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/helpers.rb b/actionpack/lib/action_controller/helpers.rb index ae49f5ba87..eb2b4fa7ab 100644 --- a/actionpack/lib/action_controller/helpers.rb +++ b/actionpack/lib/action_controller/helpers.rb @@ -96,7 +96,7 @@ module ActionController #:nodoc: inherited_without_helper(child) begin child.helper(child.controller_name) - rescue LoadError, StandardError + rescue Object # No default helper available for this controller end end |