##// END OF EJS Templates
Adds double quotes around issue change details in plain text notifications (#10603)....
Adds double quotes around issue change details in plain text notifications (#10603). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9368 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8022:ede9a03405fb
r9234:1334cbf78c1d
Show More
_preferences.html.erb
7 lines | 452 B | text/plain | TextLexer
/ app / views / users / _preferences.html.erb
<% labelled_fields_for :pref, @user.pref do |pref_fields| %>
<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>
<p><%= pref_fields.check_box :warn_on_leaving_unsaved %></p>
<% end %>