mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/LoginNotify
synced 2024-11-28 17:00:21 +00:00
Merge "Fix string concatenation"
This commit is contained in:
commit
781dd53a90
|
@ -48,7 +48,7 @@ class LoginNotify implements LoggerAwareInterface {
|
|||
$this->secret = $this->config->get( 'LoginNotifySecretKey' );
|
||||
} else {
|
||||
$globalSecret = $this->config->get( 'SecretKey' );
|
||||
$this->secret = hash( 'sha256', $globalSecret + 'LoginNotify' );
|
||||
$this->secret = hash( 'sha256', $globalSecret . 'LoginNotify' );
|
||||
}
|
||||
|
||||
$log = LoggerFactory::getInstance( 'LoginNotify' );
|
||||
|
|
Loading…
Reference in a new issue