Merge "Fix string concatenation"

This commit is contained in:
jenkins-bot 2016-11-05 05:32:48 +00:00 committed by Gerrit Code Review
commit 781dd53a90

View file

@ -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' );