Fix indentation for strings spanning multiple lines in our auth controller

This commit is contained in:
Eric Lippmann 2015-03-11 22:11:10 +01:00
parent 64ad54ebd6
commit 4570151b4b
1 changed files with 3 additions and 3 deletions

View File

@ -102,21 +102,21 @@ class AuthenticationController extends ActionController
$this->view->form->addError(
$this->translate(
'No authentication methods available. Did you create'
. ' authentication.ini when setting up Icinga Web 2?'
. ' authentication.ini when setting up Icinga Web 2?'
)
);
} else if ($backendsTried === $backendsWithError) {
$this->view->form->addError(
$this->translate(
'All configured authentication methods failed.'
. ' Please check the system log or Icinga Web 2 log for more information.'
. ' Please check the system log or Icinga Web 2 log for more information.'
)
);
} elseif ($backendsWithError) {
$this->view->form->addError(
$this->translate(
'Please note that not all authentication methods were available.'
. ' Check the system log or Icinga Web 2 log for more information.'
. ' Check the system log or Icinga Web 2 log for more information.'
)
);
}