Use space after the boolean negotiation operator

This commit is contained in:
Eric Lippmann 2015-03-11 22:25:52 +01:00
parent 4570151b4b
commit 7288f2e92b
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ class AuthenticationController extends ActionController
$this->view->form->addError($e->getMessage()); $this->view->form->addError($e->getMessage());
} }
$this->view->requiresExternalAuth = $triedOnlyExternalAuth && !$auth->isAuthenticated(); $this->view->requiresExternalAuth = $triedOnlyExternalAuth && ! $auth->isAuthenticated();
$this->view->requiresSetup = Icinga::app()->requiresSetup(); $this->view->requiresSetup = Icinga::app()->requiresSetup();
} }