From: David Heinemeier Hansson Date: 2005-09-05T01:26:44+09:00 Subject: Re: params v.s. @params in rails? > The recommendation for using the params method, instead of accessing > the @params instance variable directly, is that it�s more uniform to > use the accessor method, since you can also do that from the view. Direct access to these instance variables is deprecated. The same goes for cookies, session, request, response, and the other accessors. Use the accessor instead of going directly, so it's request.get? instead of @request.get?. -- David Heinemeier Hansson http://www.loudthinking.com -- Broadcasting Brain http://www.basecamphq.com -- Online project management http://www.backpackit.com -- Personal information manager http://www.rubyonrails.com -- Web-application framework