Style fixes.
This commit is contained in:
parent
a7a59b690a
commit
be4950ff88
43 changed files with 187 additions and 149 deletions
|
|
@ -44,8 +44,11 @@ class UserController extends ControllerBase
|
|||
]);
|
||||
|
||||
// Send the email.
|
||||
$this->di->getMail()->send('Httpcb password activation',
|
||||
$user->getEmail(), $content);
|
||||
$this->di->getMail()->send(
|
||||
'Httpcb password activation',
|
||||
$user->getEmail(),
|
||||
$content
|
||||
);
|
||||
|
||||
$msg = "For security reasons. Before a password can be created "
|
||||
. "a email has been sent to <strong>{$user->getEmail()}</strong> with "
|
||||
|
|
@ -137,7 +140,7 @@ class UserController extends ControllerBase
|
|||
|
||||
$msg = '<p>You are about to unlink the last OAuth provider.'
|
||||
. ' Your <strong>only</strong> login option will be <strong>password</strong> if you do this.</p>'
|
||||
. '<p>Are you sure? <a class="alert-link" href="' . $url .'">Yes</a></p>';
|
||||
. '<p>Are you sure? <a class="alert-link" href="' . $url . '">Yes</a></p>';
|
||||
|
||||
$this->flash->message('warning', $msg);
|
||||
$this->response->redirect('/settings');
|
||||
|
|
|
|||
Reference in a new issue