diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-29 17:25:22 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-29 17:25:22 +0000 |
commit | 317b460d96523c234d2dc2343a9774888c74d44c (patch) | |
tree | 806f58e48338133111bf1e2facbf7e62299fa502 /app/views/roles | |
parent | c8b3c8dfec4c768658be5482234c7a05808e6963 (diff) | |
download | redmine-317b460d96523c234d2dc2343a9774888c74d44c.tar.gz redmine-317b460d96523c234d2dc2343a9774888c74d44c.zip |
Some deprecation fixes (end_form_tag and count API).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@676 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/roles')
-rw-r--r-- | app/views/roles/report.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/roles/report.rhtml b/app/views/roles/report.rhtml index 676e25f39..ca2f9d798 100644 --- a/app/views/roles/report.rhtml +++ b/app/views/roles/report.rhtml @@ -1,6 +1,6 @@ <h2><%=l(:label_permissions_report)%></h2> -<%= start_form_tag({:action => 'report'}, :id => 'permissions_form') %> +<% form_tag({:action => 'report'}, :id => 'permissions_form') do %> <%= hidden_field_tag 'permissions[0]', '' %> <table class="list"> <thead> @@ -28,4 +28,4 @@ </table> <p><%= check_all_links 'permissions_form' %></p> <p><%= submit_tag l(:button_save) %></p> -<%= end_form_tag %> +<% end %> |