diff options
author | wycats <wycats@gmail.com> | 2010-03-16 17:32:42 -0700 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-03-16 17:32:42 -0700 |
commit | 55aac2c6969e4f5209ba786120f1d7b57c80b9a0 (patch) | |
tree | 9179967053152e4281dc3d4b7d606bc60e85380e | |
parent | 7c49b1adbbe1ffd42c8cd6fc0439d53895c861cf (diff) | |
download | rails-55aac2c6969e4f5209ba786120f1d7b57c80b9a0.tar.gz rails-55aac2c6969e4f5209ba786120f1d7b57c80b9a0.tar.bz2 rails-55aac2c6969e4f5209ba786120f1d7b57c80b9a0.zip |
Fix missing require
-rw-r--r-- | actionpack/lib/action_view/helpers/url_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb index f877378ebe..79232e297f 100644 --- a/actionpack/lib/action_view/helpers/url_helper.rb +++ b/actionpack/lib/action_view/helpers/url_helper.rb @@ -1,6 +1,7 @@ require 'action_view/helpers/javascript_helper' require 'active_support/core_ext/array/access' require 'active_support/core_ext/hash/keys' +require 'action_dispatch' module ActionView module Helpers #:nodoc: |