Browse Source

Use content_tag for empty option.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8993 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.4.0
Jean-Philippe Lang 12 years ago
parent
commit
61b14f6391
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/controllers/versions_controller.rb

+ 1
- 1
app/controllers/versions_controller.rb View File

@@ -108,7 +108,7 @@ class VersionsController < ApplicationController
page << 'hideModal();'
# IE doesn't support the replace_html rjs method for select box options
page.replace "issue_fixed_version_id",
content_tag('select', '<option></option>' + version_options_for_select(@project.shared_versions.open, @version), :id => 'issue_fixed_version_id', :name => 'issue[fixed_version_id]')
content_tag('select', content_tag('option') + version_options_for_select(@project.shared_versions.open, @version), :id => 'issue_fixed_version_id', :name => 'issue[fixed_version_id]')
}
end
format.api do

Loading…
Cancel
Save