diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2009-03-21 00:22:59 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2009-03-21 00:22:59 +0000 |
commit | 451ef7f21f411d4bfe4138a71be269f566cd4647 (patch) | |
tree | 80440f6f58bdfe818e770317789e9bc6ff07a853 /app/views/my | |
parent | b67d624754f7f02815f7ef2a80c2405f036f92d7 (diff) | |
download | redmine-451ef7f21f411d4bfe4138a71be269f566cd4647.tar.gz redmine-451ef7f21f411d4bfe4138a71be269f566cd4647.zip |
Added several more plugin hooks:
* :controller_custom_fields_new_after_save
* :controller_custom_fields_edit_after_save
* :view_custom_fields_form_upper_box
* :view_custom_fields_form_* (type of custom field)
* :view_issue_statuses_form
* :view_issues_show_description_bottom
* :view_my_account
* :view_users_form
#2599
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2611 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/my')
-rw-r--r-- | app/views/my/account.rhtml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/my/account.rhtml b/app/views/my/account.rhtml index ea226f5cb..b22f291f9 100644 --- a/app/views/my/account.rhtml +++ b/app/views/my/account.rhtml @@ -22,6 +22,7 @@ <% @user.custom_field_values.select(&:editable?).each do |value| %> <p><%= custom_field_tag_with_label :user, value %></p> <% end %> +<%= call_hook(:view_my_account, :user => @user, :form => f) %> </div> <%= submit_tag l(:button_save) %> |