diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-06 16:52:38 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-06 16:52:38 +0000 |
commit | e1ff7c18481cd730e461026c31801a7d7f2039ac (patch) | |
tree | a6310bc6f914dba0096c17a11ec8db7135e227e0 /app/views/issues | |
parent | a628ba7e60624c961842856a00169510d10ef5e9 (diff) | |
download | redmine-e1ff7c18481cd730e461026c31801a7d7f2039ac.tar.gz redmine-e1ff7c18481cd730e461026c31801a7d7f2039ac.zip |
Sort is not reflected when export CSV of issues list (#26364).
Patch by Tatsuya Saito.
git-svn-id: http://svn.redmine.org/redmine/trunk@16764 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/index.html.erb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb index 80210814e..e055fc88f 100644 --- a/app/views/issues/index.html.erb +++ b/app/views/issues/index.html.erb @@ -30,7 +30,6 @@ <h3 class="title"><%= l(:label_export_options, :export_format => 'CSV') %></h3> <%= form_tag(_project_issues_path(@project, :format => 'csv'), :method => :get, :id => 'csv-export-form') do %> <%= query_as_hidden_field_tags(@query) %> - <%= hidden_field_tag 'sort', @sort_criteria.to_param, :id => nil %> <p> <label><%= radio_button_tag 'c[]', '', true %> <%= l(:description_selected_columns) %></label><br /> <label><%= radio_button_tag 'c[]', 'all_inline' %> <%= l(:description_all_columns) %></label> |