summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-02-01 19:07:54 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-02-01 19:07:54 +0200
commit0965aeb2ea3a7f89b0a74b746ec9aee063b0713c (patch)
tree9c39574575471b5d1d7be7c47c740c9a11afb3c1
parente6002bdaffc819ea3b743955315cf50eb804dbdb (diff)
downloadgitlab-ce-0965aeb2ea3a7f89b0a74b746ec9aee063b0713c.tar.gz
Fix crash on team update
-rw-r--r--app/views/teams/edit.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/teams/edit.html.haml b/app/views/teams/edit.html.haml
index e0962f2b05b..3435583600d 100644
--- a/app/views/teams/edit.html.haml
+++ b/app/views/teams/edit.html.haml
@@ -1,6 +1,6 @@
%h3.page_title= "Edit Team #{@team.name}"
%hr
-= form_for @team, url: teams_path do |f|
+= form_for @team, url: team_path(@team) do |f|
- if @team.errors.any?
.alert.alert-error
%span= @team.errors.full_messages.first