Actions
Defect #10560
closedstrange validation in redmine core
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Duplicate
Affected version:
Description
I've developing redmine plugin, and discover this line of code in Version model:
validates_format_of :effective_date, :with => /^\d{4}-\d{2}-\d{2}$/, :message => :not_a_date, :allow_nil => true
I've changed Rails date format by adding
Date::DATE_FORMATS[:default]="%d.%m.%Y"
in initializer, and now I can't save my Version.
Two questions to developers:
1.Why do we need for this line? Are we need to validate effective_date of version so hard?
2.What should I do to solve this problem? I need my date format
environment: ruby Entrprise Edition, rails 2.3.14, mysql 5.1,svn 1.6
Related issues
Updated by Jean-Philippe Lang over 12 years ago
- Status changed from New to Closed
- Resolution set to Duplicate
Redmine only supports YYYY-MM-DD format for entering dates. See #668.
Actions