##// END OF EJS Templates
Fixed that LDAP error is not displayed when testing connection....
Fixed that LDAP error is not displayed when testing connection. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9234 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8022:ede9a03405fb
r9114:a8e392c0e573
Show More
_preferences.html.erb
7 lines | 452 B | text/plain | TextLexer
/ app / views / users / _preferences.html.erb
Jean-Philippe Lang
Removed TabularFormBuilder references in views....
r8022 <% labelled_fields_for :pref, @user.pref do |pref_fields| %>
Eric Davis
Allow admins to edit user's email notifications and preferences. #3503...
r4109 <p><%= pref_fields.check_box :hide_mail %></p>
<p><%= pref_fields.select :time_zone, ActiveSupport::TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :include_blank => true %></p>
<p><%= pref_fields.select :comments_sorting, [[l(:label_chronological_order), 'asc'], [l(:label_reverse_chronological_order), 'desc']] %></p>
Jean-Philippe Lang
Warning on leaving a page with unsaved content in textarea (#2910)....
r4780 <p><%= pref_fields.check_box :warn_on_leaving_unsaved %></p>
Eric Davis
Allow admins to edit user's email notifications and preferences. #3503...
r4109 <% end %>