diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-16 11:35:18 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-16 11:35:18 +0000 |
commit | 7799788b3de62a6af32c9d573904a929992d7ab0 (patch) | |
tree | e7ee0f18db9275d0d546b7c3709bd718eff92195 /config | |
parent | 1cf09a2d31bf08cfa8c59da6fb40a6028819c15c (diff) | |
download | redmine-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.rb | 2 |
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] |