diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-09 21:45:43 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-09 21:45:43 +0000 |
commit | 1de33ac2f902ba5a98f66d22352fe6900de88b69 (patch) | |
tree | 852f2ee5d2f53bb5c44bc4ac01cdead2ca1a7de5 | |
parent | 11f766d3eb85fe363a17a861a9426307cd80d7f6 (diff) | |
download | rails-1de33ac2f902ba5a98f66d22352fe6900de88b69.tar.gz rails-1de33ac2f902ba5a98f66d22352fe6900de88b69.tar.bz2 rails-1de33ac2f902ba5a98f66d22352fe6900de88b69.zip |
Removed last trace of ill-conceived authentication framework
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@356 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-x | actionpack/lib/action_controller.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller.rb b/actionpack/lib/action_controller.rb index 12a01cc4bb..8ed5fda595 100755 --- a/actionpack/lib/action_controller.rb +++ b/actionpack/lib/action_controller.rb @@ -41,7 +41,6 @@ require 'action_controller/helpers' require 'action_controller/cookies' require 'action_controller/cgi_process' require 'action_controller/caching' -require 'action_controller/authentication' ActionController::Base.class_eval do include ActionController::Filters @@ -55,7 +54,6 @@ ActionController::Base.class_eval do include ActionController::Cookies include ActionController::Session include ActionController::Caching - include ActionController::Authentication end require 'action_view' |