]> source.dussan.org Git - redmine.git/commitdiff
Don't return 2 errors when identifier is blank (blank + too short).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 19 Nov 2016 10:50:03 +0000 (10:50 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 19 Nov 2016 10:50:03 +0000 (10:50 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@15987 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/project.rb

index e751c4b4c1eac7ceef28f3247666a7d9f29203ed..eecc3851e37aa299a3db75e07ce9742a6f359b63 100644 (file)
@@ -72,7 +72,7 @@ class Project < ActiveRecord::Base
   validates_uniqueness_of :identifier, :if => Proc.new {|p| p.identifier_changed?}
   validates_length_of :name, :maximum => 255
   validates_length_of :homepage, :maximum => 255
-  validates_length_of :identifier, :in => 1..IDENTIFIER_MAX_LENGTH
+  validates_length_of :identifier, :maximum => IDENTIFIER_MAX_LENGTH
   # downcase letters, digits, dashes but not digits only
   validates_format_of :identifier, :with => /\A(?!\d+$)[a-z0-9\-_]*\z/, :if => Proc.new { |p| p.identifier_changed? }
   # reserved words