diff options
-rw-r--r-- | app/controllers/account_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb index 0b70972f5..8ee046a0c 100644 --- a/app/controllers/account_controller.rb +++ b/app/controllers/account_controller.rb @@ -26,7 +26,7 @@ class AccountController < ApplicationController # Show user's account def show - @user = User.find(params[:id]) + @user = User.find_active(params[:id]) @custom_values = @user.custom_values.find(:all, :include => :custom_field) # show only public projects and private projects that the logged in user is also a member of |