From 67c8053dc912bb4f3910e56bc205dce3bfbe7b1f Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 15 Jul 2019 08:25:30 +0200 Subject: [PATCH] login: Override the default title instead of setting a title refs #3851 --- application/controllers/AuthenticationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/AuthenticationController.php b/application/controllers/AuthenticationController.php index c6fedb57c..e74aac35f 100644 --- a/application/controllers/AuthenticationController.php +++ b/application/controllers/AuthenticationController.php @@ -54,7 +54,7 @@ class AuthenticationController extends Controller $form->handleRequest(); } $this->view->form = $form; - $this->view->title = $this->translate('Icinga Web 2 Login'); + $this->view->defaultTitle = $this->translate('Icinga Web 2 Login'); $this->view->requiresSetup = $requiresSetup; }