Skip to content

Commit

Permalink
Fix indentation for strings spanning multiple lines in our auth contr…
Browse files Browse the repository at this point in the history
…oller
  • Loading branch information
lippserd committed Mar 11, 2015
1 parent 64ad54e commit 4570151
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/controllers/AuthenticationController.php
Expand Up @@ -102,21 +102,21 @@ public function loginAction()
$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.'
)
);
}
Expand Down

0 comments on commit 4570151

Please sign in to comment.