summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-02-16 11:35:18 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-02-16 11:35:18 +0000
commit7799788b3de62a6af32c9d573904a929992d7ab0 (patch)
treee7ee0f18db9275d0d546b7c3709bd718eff92195 /config
parent1cf09a2d31bf08cfa8c59da6fb40a6028819c15c (diff)
downloadredmine-7799788b3de62a6af32c9d573904a929992d7ab0.tar.gz
redmine-7799788b3de62a6af32c9d573904a929992d7ab0.zip
Fixed that updating the issue form was broken by r4011 when user is not allowed to add issues (#13188).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11405 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index f157f764c..b89973e55 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -116,7 +116,7 @@ RedmineApp::Application.routes.draw do
end
end
# issue form update
- match 'issues/new', :controller => 'issues', :action => 'new', :via => [:put, :post], :as => 'issue_form'
+ match 'issues/update_form', :controller => 'issues', :action => 'update_form', :via => [:put, :post], :as => 'issue_form'
resources :files, :only => [:index, :new, :create]