]> source.dussan.org Git - redmine.git/commitdiff
Add maxlength attributes to some Project fields. #4896
authorEric Davis <edavis@littlestreamsoftware.com>
Wed, 4 Aug 2010 00:59:15 +0000 (00:59 +0000)
committerEric Davis <edavis@littlestreamsoftware.com>
Wed, 4 Aug 2010 00:59:15 +0000 (00:59 +0000)
Contributed by Felix Schäfer

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3910 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/projects/_form.rhtml

index 30848e4cdf423b2cde63d2b7b76238c8d58c7435..fbc6714c8714fcf5e882fb3c5fa0001f26b92041 100644 (file)
@@ -2,14 +2,14 @@
 
 <div class="box">
 <!--[form:project]-->
-<p><%= f.text_field :name, :required => true %><br /><em><%= l(:text_caracters_maximum, 30) %></em></p>
+<p><%= f.text_field :name, :required => true, :maxlength => 30 %><br /><em><%= l(:text_caracters_maximum, 30) %></em></p>
 
 <% unless @project.allowed_parents.compact.empty? %>
     <p><%= label(:project, :parent_id, l(:field_parent)) %><%= parent_project_select_tag(@project) %></p>
 <% end %>
 
 <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p>
-<p><%= f.text_field :identifier, :required => true, :disabled => @project.identifier_frozen? %>
+<p><%= f.text_field :identifier, :required => true, :disabled => @project.identifier_frozen?, :maxlength => 20 %>
 <% unless @project.identifier_frozen? %>
 <br /><em><%= l(:text_length_between, :min => 1, :max => 20) %> <%= l(:text_project_identifier_info) %></em>
 <% end %></p>