summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-11-14 21:54:16 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-11-14 21:54:16 +0000
commitb0a8888e356aa287fc9c968a5d9b05fc2aff0748 (patch)
tree25a0e1b36ad30fe85e6be57945588900802e1b1c /app/views
parent833c7bd659fea1c7ce9f7bdd85714c4ac7f877d5 (diff)
downloadredmine-b0a8888e356aa287fc9c968a5d9b05fc2aff0748.tar.gz
redmine-b0a8888e356aa287fc9c968a5d9b05fc2aff0748.zip
Fixed: admin should be able to move issues to any project.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@903 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/projects/move_issues.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/move_issues.rhtml b/app/views/projects/move_issues.rhtml
index e9e4bb787..b29653037 100644
--- a/app/views/projects/move_issues.rhtml
+++ b/app/views/projects/move_issues.rhtml
@@ -18,7 +18,7 @@
<%= select_tag "new_project_id", options_from_collection_for_select(@projects, "id", "name", @project.id) %></p>
<p><label for="new_tracker_id"><%=l(:field_tracker)%> :</label>
-<%= select_tag "new_tracker_id", '<option></option>' + options_from_collection_for_select(@trackers, "id", "name") %></p>
+<%= select_tag "new_tracker_id", "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@trackers, "id", "name") %></p>
</div>
<%= submit_tag l(:button_move) %>
<% end %>