##// END OF EJS Templates
Fixed: non-active users can be viewed with account/show...
Jean-Philippe Lang -
r619:a8b202c9bc6b
parent child
Show More
@@ -26,7 +26,7 class AccountController < ApplicationController
26
26
27 # Show user's account
27 # Show user's account
28 def show
28 def show
29 @user = User.find(params[:id])
29 @user = User.find_active(params[:id])
30 @custom_values = @user.custom_values.find(:all, :include => :custom_field)
30 @custom_values = @user.custom_values.find(:all, :include => :custom_field)
31
31
32 # show only public projects and private projects that the logged in user is also a member of
32 # show only public projects and private projects that the logged in user is also a member of
General Comments 0
You need to be logged in to leave comments. Login now