mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Added request as instance method to views, so you can do <%= request.env["HTTP_REFERER"] %>, just like you can already access response, session, and the likes [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2918 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
bbe9ee13e1
commit
3c31062c3d
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Added request as instance method to views, so you can do <%= request.env["HTTP_REFERER"] %>, just like you can already access response, session, and the likes [DHH]
|
||||
|
||||
* Fix conflict with assert_tag and Glue gem #2255 [david.felstead@gmail.com]
|
||||
|
||||
* Add documentation to assert_tag indicating that it only works with well-formed XHTML #1937, #2570 [Jamis Buck]
|
||||
|
|
|
@ -122,7 +122,7 @@ module ActionView #:nodoc:
|
|||
attr_accessor :base_path, :assigns, :template_extension
|
||||
attr_accessor :controller
|
||||
|
||||
attr_reader :logger, :params, :response, :session, :headers, :flash
|
||||
attr_reader :logger, :params, :request, :response, :session, :headers, :flash
|
||||
|
||||
# Specify trim mode for the ERB compiler. Defaults to '-'.
|
||||
# See ERB documentation for suitable values.
|
||||
|
|
Loading…
Reference in a new issue