]> source.dussan.org Git - redmine.git/commitdiff
Backported r11233 from trunk (#12833).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Jan 2013 17:03:40 +0000 (17:03 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Jan 2013 17:03:40 +0000 (17:03 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.2-stable@11234 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 7ecdd446d5df9761812843ec86074b02c9dc4e35..f8f04adb812919e402be73b34738f3f4292daf70 100644 (file)
@@ -12,7 +12,7 @@
        <p><%= f.text_field :issue_id, :size => 6 %> <em><%= h("#{@time_entry.issue.tracker.name} ##{@time_entry.issue.id}: #{@time_entry.issue.subject}") if @time_entry.issue %></em></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>