summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorteuneboon <teuneboon@gmail.com>2015-10-12 14:37:07 +0200
committerteuneboon <teuneboon@gmail.com>2015-10-12 14:37:07 +0200
commitd6a523d78569020a00cf707f34a1824996261037 (patch)
tree66c96eb5385a0cfe15f1f5d6030085cfd1935f2f
parent03b7fe71a5c5372fc8239a26e757685ab12eed87 (diff)
downloadgitlab-ce-d6a523d78569020a00cf707f34a1824996261037.tar.gz
Fix typo(missing quote) when deleting groups
-rw-r--r--app/controllers/groups_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb
index 524218290c6..735de309fd6 100644
--- a/app/controllers/groups_controller.rb
+++ b/app/controllers/groups_controller.rb
@@ -88,7 +88,7 @@ class GroupsController < Groups::ApplicationController
def destroy
DestroyGroupService.new(@group, current_user).execute
- redirect_to root_path, alert: "Group '#{@group.name} was deleted."
+ redirect_to root_path, alert: "Group '#{@group.name}' was deleted."
end
protected