diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-19 19:10:21 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-19 19:10:21 +0000 |
commit | 77459f9ae4880bb6abad2520de687c06e6ece5d0 (patch) | |
tree | e5cdd8fe680c630191285a6346deb97eb9e59849 | |
parent | d46609f4bbd409c6f740b6a0c527af2ba4035a67 (diff) | |
download | redmine-77459f9ae4880bb6abad2520de687c06e6ece5d0.tar.gz redmine-77459f9ae4880bb6abad2520de687c06e6ece5d0.zip |
Adds a hook on issue move form (#4850).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3456 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/move.rhtml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/issues/move.rhtml b/app/views/issues/move.rhtml index d63e4e66c..22d199642 100644 --- a/app/views/issues/move.rhtml +++ b/app/views/issues/move.rhtml @@ -42,6 +42,8 @@ <label><%= l(:field_due_date) %></label> <%= text_field_tag 'due_date', '', :size => 10 %><%= calendar_for('due_date') %> </p> + +<%= call_hook(:view_issues_move_bottom, :issue => @issue, :target_project => @target_project, :copy => !!@copy) %> </div> <% if @copy %> |