diff options
author | francis <francis> | 2007-09-12 15:27:15 +0000 |
---|---|---|
committer | francis <francis> | 2007-09-12 15:27:15 +0000 |
commit | 565fbcbe0e8ef9c3247469168da6705f842cce32 (patch) | |
tree | b96fc9dacf7aece0aa98d7a291934b84287f2d70 /app/controllers/application.rb | |
parent | 1fa07407f4bea739b9e76f5f80ad255e3156a5fa (diff) |
Move template for signin dialog to a shared view folder, rather than the one for a specific controller.
Diffstat (limited to 'app/controllers/application.rb')
-rw-r--r-- | app/controllers/application.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/application.rb b/app/controllers/application.rb index f00479bee..34c357c61 100644 --- a/app/controllers/application.rb +++ b/app/controllers/application.rb @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: application.rb,v 1.5 2007-09-03 13:52:01 francis Exp $ +# $Id: application.rb,v 1.6 2007-09-12 15:27:15 francis Exp $ class ApplicationController < ActionController::Base @@ -26,8 +26,8 @@ class ApplicationController < ActionController::Base else flash[:error] = "Email or password not correct" end - end + render :template => 'user_accounts/signin' end # Logout form |