diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2021-08-03 20:21:41 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2021-08-03 20:21:41 +0000 |
commit | 63e4dcf60a9ddce7c60e7388fd418ae2c0659eed (patch) | |
tree | 0f5790061583e7bd10bed94426b694efd15306b1 /app/views | |
parent | 8ade9596a994d50849c09e9dd857789b9ca3e459 (diff) | |
download | redmine-63e4dcf60a9ddce7c60e7388fd418ae2c0659eed.tar.gz redmine-63e4dcf60a9ddce7c60e7388fd418ae2c0659eed.zip |
Fix update status path on the context menu (#33521).
Patch by Mizuki ISHIKAWA.
git-svn-id: http://svn.redmine.org/redmine/trunk@21132 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/context_menus/issues.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/context_menus/issues.html.erb b/app/views/context_menus/issues.html.erb index 9836b5dff..23ea817ac 100644 --- a/app/views/context_menus/issues.html.erb +++ b/app/views/context_menus/issues.html.erb @@ -21,7 +21,7 @@ @issue, :ids => @issue_ids, :issue => {:status_id => s}, :back_url => @back ), - :method => :post, + :method => :patch, :selected => (@issue && s == @issue.status), :disabled => !@can[:edit] ) %> </li> |