diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-20 17:46:02 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-20 17:46:02 +0000 |
commit | d34ea9a56986a524382641de987f818bbd0131e4 (patch) | |
tree | c9a09706ca3ac5e3b650faed3192c7418bd2a348 /app/views/versions | |
parent | bb1fccb7b7202ec065fdc39646067054580d278f (diff) | |
download | redmine-d34ea9a56986a524382641de987f818bbd0131e4.tar.gz redmine-d34ea9a56986a524382641de987f818bbd0131e4.zip |
Versions can now be created with no date.
Versions with no date appear at the end of the roadmap, sorted by name.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@536 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-rw-r--r-- | app/views/versions/_form.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/versions/_form.rhtml b/app/views/versions/_form.rhtml index 3d6c9c208..8dca13e36 100644 --- a/app/views/versions/_form.rhtml +++ b/app/views/versions/_form.rhtml @@ -4,7 +4,7 @@ <!--[form:version]--> <p><%= f.text_field :name, :size => 20, :required => true %></p> <p><%= f.text_field :description, :size => 60 %></p> -<p><%= f.text_field :effective_date, :size => 10, :required => true %><%= calendar_for('version_effective_date') %></p> +<p><%= f.text_field :effective_date, :size => 10 %><%= calendar_for('version_effective_date') %></p> <!--[eoform:version]--> </div> |