diff options
author | francis <francis> | 2008-05-12 00:56:21 +0000 |
---|---|---|
committer | francis <francis> | 2008-05-12 00:56:21 +0000 |
commit | c66db240f11e34c19b02e3e6000cf2c147f9a469 (patch) | |
tree | 579f5eb949620fb6cedb384a2fd4bb44cea5ca7f /app/controllers/request_controller.rb | |
parent | 214ccea5856fadc2cceba6ce34389847ab4dd207 (diff) |
Fix various things to do with event statuses. Oops.
Diffstat (limited to 'app/controllers/request_controller.rb')
-rw-r--r-- | app/controllers/request_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index db53631c4..1879482a3 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -4,7 +4,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: request_controller.rb,v 1.78 2008-05-05 22:48:43 francis Exp $ +# $Id: request_controller.rb,v 1.79 2008-05-12 00:56:21 francis Exp $ class RequestController < ApplicationController @@ -191,7 +191,7 @@ class RequestController < ApplicationController end # Make the state change - @info_request.set_described_state(params[:incoming_message][:described_state], @last_info_request_event_id) + @info_request.set_described_state(params[:incoming_message][:described_state]) # Display appropriate next page (e.g. help for complaint etc.) if @info_request.calculate_status == 'waiting_response' |