aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/examples/debate_controller.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/examples/debate_controller.cgi')
-rwxr-xr-xactionpack/examples/debate_controller.cgi10
1 files changed, 5 insertions, 5 deletions
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