]> source.dussan.org Git - redmine.git/commitdiff
Input fields restricted on length should have maxlength parameter set (#12833).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Jan 2013 17:02:11 +0000 (17:02 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Jan 2013 17:02:11 +0000 (17:02 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11233 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/_form.html.erb
app/views/timelog/_form.html.erb

index 44de84a49d7534945cdbe7af6758e2f90a57bc46..6a79d1e5064d60eba9872ba5487de30c0e072295 100644 (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' %>
index 48db3f27a5b20d729766439e5e07a6d714c46024..3256feaacb82b61480ce6efbfdf7c7d0255ffabd 100644 (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>