Skip to content
Snippets Groups Projects
Commit bf3b2ec9 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang
Browse files

Change status select box default to current status (Rocco Stanzione).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1016 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 49bdf622
Branches
Tags
No related merge requests found
......@@ -83,7 +83,7 @@ end %>
<% form_tag({:controller => 'issues', :action => 'change_status', :id => @issue}) do %>
<p><%=l(:label_change_status)%> :
<select name="new_status_id">
<%= options_from_collection_for_select @status_options, "id", "name" %>
<%= options_from_collection_for_select @status_options, "id", "name", @issue.status_id %>
</select>
<%= submit_tag l(:button_change) %></p>
<% end %>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment