]> source.dussan.org Git - redmine.git/commitdiff
Set minimum identifier lenght to 1 (#3073).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 4 Apr 2009 09:55:17 +0000 (09:55 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 4 Apr 2009 09:55:17 +0000 (09:55 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2646 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/project.rb
app/views/projects/_form.rhtml

index 5778966e767a1f47dafa08d6a2ded38b6bf5b4b0..bddd66362c6e5ec956143c2fd6f09b19d1db8f2d 100644 (file)
@@ -60,7 +60,7 @@ class Project < ActiveRecord::Base
   validates_associated :repository, :wiki
   validates_length_of :name, :maximum => 30
   validates_length_of :homepage, :maximum => 255
-  validates_length_of :identifier, :in => 2..20
+  validates_length_of :identifier, :in => 1..20
   validates_format_of :identifier, :with => /^[a-z0-9\-]*$/
   
   before_destroy :delete_all_members
index 68fd053d7a657fa6b2fb0bc9527ff24e48bbf581..e69dfedb00abd93e93e61b69f3b627169d662689 100644 (file)
@@ -11,7 +11,7 @@
 <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p>
 <p><%= f.text_field :identifier, :required => true, :disabled => @project.identifier_frozen? %>
 <% unless @project.identifier_frozen? %>
-<br /><em><%= l(:text_length_between, :min => 2, :max => 20) %> <%= l(:text_project_identifier_info) %></em>
+<br /><em><%= l(:text_length_between, :min => 1, :max => 20) %> <%= l(:text_project_identifier_info) %></em>
 <% end %></p>
 <p><%= f.text_field :homepage, :size => 60 %></p>
 <p><%= f.check_box :is_public %></p>