diff options
author | francis <francis> | 2008-05-27 01:19:44 +0000 |
---|---|---|
committer | francis <francis> | 2008-05-27 01:19:44 +0000 |
commit | de1d69bd30c6705b1cd6fd85974193ea22dc885b (patch) | |
tree | ed7214999ea49b3ff2302673d1cc77c4050598d1 /app/controllers/request_controller.rb | |
parent | f355524878bab41bc894dd9796412004e1c54429 (diff) |
Support authorities to which only EIR requests can be made.
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 0d0ba505b..71a6e66f1 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.91 2008-05-21 10:51:24 francis Exp $ +# $Id: request_controller.rb,v 1.92 2008-05-27 01:19:44 francis Exp $ class RequestController < ApplicationController @@ -137,7 +137,7 @@ class RequestController < ApplicationController @info_request.save! # XXX send_message needs the database id, so we send after saving, which isn't ideal if the request broke here. @outgoing_message.send_message - flash[:notice] = "Your Freedom of Information request has been created and sent on its way!" + flash[:notice] = "Your " + @info_request.law_used_full + " request has been created and sent on its way!" redirect_to request_url(@info_request) else # do nothing - as "authenticated?" has done the redirect to signin page for us |