summaryrefslogtreecommitdiffstats
path: root/app/views/issues/show.rhtml
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-12-19 20:23:03 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-12-19 20:23:03 +0000
commitbf3b2ec973a962bf7123e04ba54bc14238aefc9a (patch)
treec4a3a553242989e89259763990e1a6b9aeacfc2f /app/views/issues/show.rhtml
parent49bdf62243dccb6398bdac78b0eff9f1138b28fa (diff)
downloadredmine-bf3b2ec973a962bf7123e04ba54bc14238aefc9a.tar.gz
redmine-bf3b2ec973a962bf7123e04ba54bc14238aefc9a.zip
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
Diffstat (limited to 'app/views/issues/show.rhtml')
-rw-r--r--app/views/issues/show.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml
index 6e4f22574..37e1d4abd 100644
--- a/app/views/issues/show.rhtml
+++ b/app/views/issues/show.rhtml
@@ -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 %>