From 7288f2e92b41a6868b3e4d91fa2ab69b179d7647 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 11 Mar 2015 22:25:52 +0100 Subject: [PATCH] Use space after the boolean negotiation operator --- 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 affeca2f1..7d492f8c1 100644 --- a/application/controllers/AuthenticationController.php +++ b/application/controllers/AuthenticationController.php @@ -144,7 +144,7 @@ class AuthenticationController extends ActionController $this->view->form->addError($e->getMessage()); } - $this->view->requiresExternalAuth = $triedOnlyExternalAuth && !$auth->isAuthenticated(); + $this->view->requiresExternalAuth = $triedOnlyExternalAuth && ! $auth->isAuthenticated(); $this->view->requiresSetup = Icinga::app()->requiresSetup(); }