From ef01cada8b6439cb4b88261a35c132b209e19736 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 3 Jun 2012 12:02:46 +0000 Subject: [PATCH] Fixed argument to repository_path that triggers an error with Rails 3.2.5. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9761 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/repositories/edit.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/repositories/edit.html.erb b/app/views/repositories/edit.html.erb index 78105acaa..9a9443b8a 100644 --- a/app/views/repositories/edit.html.erb +++ b/app/views/repositories/edit.html.erb @@ -1,5 +1,5 @@

<%= l(:label_repository) %>

-<%= labelled_form_for :repository, @repository, :url => repository_path(@path), :html => {:method => :put} do |f| %> +<%= labelled_form_for :repository, @repository, :url => repository_path(@repository), :html => {:method => :put} do |f| %> <%= render :partial => 'form', :locals => {:f => f} %> <% end %>