diff options
author | Akira Matsuda <ronnie@dio.jp> | 2011-10-12 15:44:19 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2011-10-12 15:44:19 +0900 |
commit | 4a025f0080d05f6c27518a84cde0b93fa3821345 (patch) | |
tree | 1343fd53efcac6e9c1c3f4c4587643ca8e96c416 /actionpack/lib | |
parent | c4e29541724433fd1c96715bde829209066ca205 (diff) | |
download | rails-4a025f0080d05f6c27518a84cde0b93fa3821345.tar.gz rails-4a025f0080d05f6c27518a84cde0b93fa3821345.tar.bz2 rails-4a025f0080d05f6c27518a84cde0b93fa3821345.zip |
status is a number in Rails 3
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/metal/data_streaming.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/data_streaming.rb b/actionpack/lib/action_controller/metal/data_streaming.rb index 5e077dd7bd..0670a58d97 100644 --- a/actionpack/lib/action_controller/metal/data_streaming.rb +++ b/actionpack/lib/action_controller/metal/data_streaming.rb @@ -34,7 +34,7 @@ module ActionController #:nodoc: # If no content type is registered for the extension, default type 'application/octet-stream' will be used. # * <tt>:disposition</tt> - specifies whether the file will be shown inline or downloaded. # Valid values are 'inline' and 'attachment' (default). - # * <tt>:status</tt> - specifies the status code to send with the response. Defaults to '200 OK'. + # * <tt>:status</tt> - specifies the status code to send with the response. Defaults to 200. # * <tt>:url_based_filename</tt> - set to +true+ if you want the browser guess the filename from # the URL, which is necessary for i18n filenames on certain browsers # (setting <tt>:filename</tt> overrides this option). @@ -92,7 +92,7 @@ module ActionController #:nodoc: # If no content type is registered for the extension, default type 'application/octet-stream' will be used. # * <tt>:disposition</tt> - specifies whether the file will be shown inline or downloaded. # Valid values are 'inline' and 'attachment' (default). - # * <tt>:status</tt> - specifies the status code to send with the response. Defaults to '200 OK'. + # * <tt>:status</tt> - specifies the status code to send with the response. Defaults to 200. # # Generic data download: # |