diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb index 84e95ead5..9bae07166 100644 --- a/app/views/users/show.html.erb +++ b/app/views/users/show.html.erb @@ -14,7 +14,7 @@ <% end %> <% @user.visible_custom_field_values.each do |custom_value| %> <% if !custom_value.value.blank? %> -
  • <%= custom_value.custom_field.name %>: <%= show_value(custom_value) %>
  • +
  • <%= custom_value.custom_field.name %>: <%= show_value(custom_value) %>
  • <% end %> <% end %>
  • <%=l(:label_registered_on)%>: <%= format_date(@user.created_on) %>
  • diff --git a/test/functional/users_controller_test.rb b/test/functional/users_controller_test.rb index 1f2dd4f32..42999ea9e 100644 --- a/test/functional/users_controller_test.rb +++ b/test/functional/users_controller_test.rb @@ -118,7 +118,7 @@ class UsersControllerTest < Redmine::ControllerTest get :show, :params => {:id => 2} assert_response :success - assert_select 'li', :text => /Phone number/ + assert_select 'li[class=?]', 'cf_4', :text => /Phone number/ end def test_show_should_not_display_hidden_custom_fields