diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2008-12-03 23:18:12 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2008-12-03 23:18:12 +0000 |
commit | 1b4f0c38ce83003cf25464594945ea11fe451281 (patch) | |
tree | 35c99d59f3884d3b34638a932f21ac4f9027b4bf /app | |
parent | 5f9b1b0e0b3fa7cd7f8e32aa4d53f796d9b2c178 (diff) | |
download | redmine-1b4f0c38ce83003cf25464594945ea11fe451281.tar.gz redmine-1b4f0c38ce83003cf25464594945ea11fe451281.zip |
Added :view_issues_edit_notes_bottom hook
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2087 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/issues/_edit.rhtml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/issues/_edit.rhtml b/app/views/issues/_edit.rhtml index 2c7a4286e..413f21729 100644 --- a/app/views/issues/_edit.rhtml +++ b/app/views/issues/_edit.rhtml @@ -35,6 +35,7 @@ <fieldset><legend><%= l(:field_notes) %></legend> <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %> <%= wikitoolbar_for 'notes' %> + <%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %> <p><%=l(:label_attachment_plural)%><br /><%= render :partial => 'attachments/form' %></p> </fieldset> |