]> source.dussan.org Git - redmine.git/commitdiff
Lower the project identifier limit to a minimum of two characters (#2003).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 3 Jan 2009 13:09:36 +0000 (13:09 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 3 Jan 2009 13:09:36 +0000 (13:09 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2221 e93f8b46-1217-0410-a6f0-8f06a7374b81

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

index e8d3ed179d18bb47a1d594b02b2093004bc8e473..c792b9c3b224e3fc69dba126bbe5b79dff8ab239 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 => 3..20
+  validates_length_of :identifier, :in => 2..20
   validates_format_of :identifier, :with => /^[a-z0-9\-]*$/
   
   before_destroy :delete_all_members
index 860b19fe415646130c9865fcbf279c4292395a63..f0c9fda55b1c4cef70946998b2196957d95f61bf 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, 3, 20) %> <%= l(:text_project_identifier_info) %></em>
+<br /><em><%= l(:text_length_between, 2, 20) %> <%= l(:text_project_identifier_info) %></em>
 <% end %></p>
 <p><%= f.text_field :homepage, :size => 60 %></p>
 <p><%= f.check_box :is_public %></p>