diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-11-20 15:55:19 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-11-20 15:55:19 +0000 |
commit | 6f4fb8b8920cc8bd414e98671b6025a4378d6c25 (patch) | |
tree | 4548c25ff2e01c12ee41fdbf39b365e49ec71217 /app/views/issue_categories/edit.html.erb | |
parent | 30556f8cbfac04d5d6c6e3a9331874b7e83954d6 (diff) | |
download | redmine-6f4fb8b8920cc8bd414e98671b6025a4378d6c25.tar.gz redmine-6f4fb8b8920cc8bd414e98671b6025a4378d6c25.zip |
Resourcified issue categories (#9553).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7881 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issue_categories/edit.html.erb')
-rw-r--r-- | app/views/issue_categories/edit.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issue_categories/edit.html.erb b/app/views/issue_categories/edit.html.erb index bc627797b..1e1a8fe7d 100644 --- a/app/views/issue_categories/edit.html.erb +++ b/app/views/issue_categories/edit.html.erb @@ -1,6 +1,6 @@ <h2><%=l(:label_issue_category)%></h2> -<% labelled_tabular_form_for :category, @category, :url => { :action => 'edit', :id => @category } do |f| %> +<% labelled_tabular_form_for :category, @category, :url => issue_category_path(@category), :html => {:method => :put} do |f| %> <%= render :partial => 'issue_categories/form', :locals => { :f => f } %> <%= submit_tag l(:button_save) %> <% end %> |