aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
diff options
context:
space:
mode:
authorYehuda Katz <wycats@yehuda-katz.home>2009-12-20 18:50:47 -0800
committerYehuda Katz <wycats@yehuda-katz.home>2009-12-20 18:50:54 -0800
commit17f66473bce0decb2e5ff23142d4046056ccca1b (patch)
tree3e40db99f5f0aa5f216697b768da364706c33d83 /actionpack/lib/action_controller/base.rb
parenteeda059818ae95620a7c7b86ad0ff2fa621cbe88 (diff)
downloadrails-17f66473bce0decb2e5ff23142d4046056ccca1b.tar.gz
rails-17f66473bce0decb2e5ff23142d4046056ccca1b.tar.bz2
rails-17f66473bce0decb2e5ff23142d4046056ccca1b.zip
AC::Head now doesn't have an unfulfilled Rendering dependency, and instead works just fine standalone (which means that ConditionalGet also doesn't have a Rendering dependency)
Diffstat (limited to 'actionpack/lib/action_controller/base.rb')
-rw-r--r--actionpack/lib/action_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index e6cde7fd35..452f0cd4f0 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -89,7 +89,7 @@ module ActionController
end
if options[:status]
- options[:status] = _interpret_status(options[:status])
+ options[:status] = ActionDispatch::StatusCodes[options[:status]]
end
options[:update] = blk if block_given?