diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-02 08:47:07 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-02 08:47:07 +0000 |
commit | e3becc7c3c53aff0566cd862c13b0bd032da1169 (patch) | |
tree | 51158f62af5ca62a00308a84ce2eae986ccade22 /app/controllers/account_controller.rb | |
parent | e7caec6e7d1ac9c67878562f53c4ad2ba1e82217 (diff) | |
download | redmine-e3becc7c3c53aff0566cd862c13b0bd032da1169.tar.gz redmine-e3becc7c3c53aff0566cd862c13b0bd032da1169.zip |
ActiveRecord::RecordNotFound exceptions handled more gracefully
git-svn-id: http://redmine.rubyforge.org/svn/trunk@133 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/account_controller.rb')
-rw-r--r-- | app/controllers/account_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb index ffd2419b3..fb775d196 100644 --- a/app/controllers/account_controller.rb +++ b/app/controllers/account_controller.rb @@ -28,6 +28,8 @@ class AccountController < ApplicationController def show
@user = User.find(params[:id])
@custom_values = @user.custom_values.find(:all, :include => :custom_field)
+ rescue ActiveRecord::RecordNotFound
+ render_404
end
# Login request and validation
|