Browse Source

Input fields restricted on length should have maxlength parameter set (#12833).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11233 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.3.0
Jean-Philippe Lang 11 years ago
parent
commit
d6d7563a4b
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      app/views/issues/_form.html.erb
  2. 1
    1
      app/views/timelog/_form.html.erb

+ 1
- 1
app/views/issues/_form.html.erb View File

@@ -18,7 +18,7 @@
<% end %>

<% if @issue.safe_attribute? 'subject' %>
<p><%= f.text_field :subject, :size => 80, :required => true %></p>
<p><%= f.text_field :subject, :size => 80, :maxlength => 255, :required => true %></p>
<% end %>

<% if @issue.safe_attribute? 'description' %>

+ 1
- 1
app/views/timelog/_form.html.erb View File

@@ -15,7 +15,7 @@
</p>
<p><%= f.text_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %></p>
<p><%= f.text_field :hours, :size => 6, :required => true %></p>
<p><%= f.text_field :comments, :size => 100 %></p>
<p><%= f.text_field :comments, :size => 100, :maxlength => 255 %></p>
<p><%= f.select :activity_id, activity_collection_for_select_options(@time_entry), :required => true %></p>
<% @time_entry.custom_field_values.each do |value| %>
<p><%= custom_field_tag_with_label :time_entry, value %></p>

Loading…
Cancel
Save