diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/request_controller.rb | 4 | ||||
-rw-r--r-- | app/controllers/user_controller.rb | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index dd27d3265..d32a852a8 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.50 2008-02-18 23:01:35 francis Exp $ +# $Id: request_controller.rb,v 1.51 2008-02-19 12:13:07 francis Exp $ class RequestController < ApplicationController @@ -139,7 +139,7 @@ class RequestController < ApplicationController flash[:notice] = "Oh no! Sorry to hear that your request was rejected. Here is what to do now." redirect_to unhappy_url elsif @info_request.calculate_status == 'successful' - flash[:notice] = "We're glad you got all the information that you wanted. Thank you for using GovernmentSpy." + flash[:notice] = "We're glad you got all the information that you wanted. Thank you for using foi.mysociety.org" # XXX quiz them here for a comment redirect_to show_request_url(:id => @info_request) elsif @info_request.calculate_status == 'partially_successful' diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb index 4aad19cd4..a764bdb35 100644 --- a/app/controllers/user_controller.rb +++ b/app/controllers/user_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: user_controller.rb,v 1.24 2008-02-12 11:42:09 francis Exp $ +# $Id: user_controller.rb,v 1.25 2008-02-19 12:13:07 francis Exp $ class UserController < ApplicationController # XXX See controllers/application.rb simplify_url_part for reverse of expression in SQL below @@ -104,8 +104,8 @@ class UserController < ApplicationController @post_redirect = PostRedirect.new(:uri => params[:r], :post_params => {}, :reason_params => { :web => "", - :email => "Then your can sign in to GovernmentSpy.", - :email_subject => "Confirm your account on GovernmentSpy" + :email => "Then your can sign in to foi.mysociety.org", + :email_subject => "Confirm your account on foi.mysociety.org" }) @post_redirect.save! params[:token] = @post_redirect.token |