summaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-08-11 18:24:39 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-08-11 18:24:39 +0000
commit237a3f52a2d9d269b56f5cdb022f0ff4f8197100 (patch)
treeb392885d15032d8ae09af3106fffa7779c4bec15 /app/controllers
parent1631019026089cb7dc49b50365274bb07ba44025 (diff)
downloadredmine-237a3f52a2d9d269b56f5cdb022f0ff4f8197100.tar.gz
redmine-237a3f52a2d9d269b56f5cdb022f0ff4f8197100.zip
Fixes custom fields display order at several places (#1768).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1731 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/account_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb
index 96a2fc921..4b2ec8317 100644
--- a/app/controllers/account_controller.rb
+++ b/app/controllers/account_controller.rb
@@ -25,7 +25,7 @@ class AccountController < ApplicationController
# Show user's account
def show
@user = User.find_active(params[:id])
- @custom_values = @user.custom_values.find(:all, :include => :custom_field)
+ @custom_values = @user.custom_values
# show only public projects and private projects that the logged in user is also a member of
@memberships = @user.memberships.select do |membership|