From c40b1a4a67ccaa3be31edb13399d93da0c628567 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Mon, 7 Aug 2006 12:40:14 +0000 Subject: Deprecate direct usage of @params. Update ActionView::Base for instance var deprecation. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4715 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/examples/debate_controller.cgi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'actionpack/examples/debate_controller.cgi') diff --git a/actionpack/examples/debate_controller.cgi b/actionpack/examples/debate_controller.cgi index b82ac6259d..dbe022568b 100755 --- a/actionpack/examples/debate_controller.cgi +++ b/actionpack/examples/debate_controller.cgi @@ -25,19 +25,19 @@ class DebateController < ActionController::Base end def topic - @topic = @debate.find_topic(@params["id"]) + @topic = @debate.find_topic(params[:id]) end # def new_topic() end <-- This is not needed as the template doesn't require any assigns def create_topic - @debate.create_topic(@params["topic"]) + @debate.create_topic(params[:topic]) redirect_to :action => "index" end def create_reply - @debate.create_reply(@params["reply"]) - redirect_to :action => "topic", :path_params => { "id" => @params["reply"]["topic_id"] } + @debate.create_reply(params[:reply]) + redirect_to :action => "topic", :path_params => { "id" => params[:reply][:topic_id] } end private @@ -54,4 +54,4 @@ begin DebateController.process_cgi(CGI.new) if $0 == __FILE__ rescue => e CGI.new.out { "#{e.class}: #{e.message}" } -end \ No newline at end of file +end -- cgit v1.2.3