From 6dc252e4066d4e9100954f51e357bdaaffba6e64 Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Fri, 31 Aug 2018 18:25:28 -0700 Subject: Fix incorrect `page_title`, `nav`, and `header_title` usage in views During https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/19766, several usages of these helper methods were mistakenly changed to instead assign to a (completely unused) local variable. When `page_title` was misused, for example, this resulted in the page no longer having a custom title set. --- app/views/layouts/group_settings.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/views/layouts/group_settings.html.haml') diff --git a/app/views/layouts/group_settings.html.haml b/app/views/layouts/group_settings.html.haml index 14c5f0ce04c..9db78ec58e4 100644 --- a/app/views/layouts/group_settings.html.haml +++ b/app/views/layouts/group_settings.html.haml @@ -1,4 +1,4 @@ -- page_title = _("Settings") -- nav "group" +- page_title _("Settings") +- nav "group" = render template: "layouts/group" -- cgit v1.2.1