From c1791bf77285ab2fbde3a2861967898265d2f2e5 Mon Sep 17 00:00:00 2001 From: addshore Date: Mon, 12 Sep 2016 13:37:56 +0200 Subject: [PATCH] Fix string concatenation Change-Id: I471f04c16be8fc443eb3822f1a317260285bd859 --- LoginNotify_body.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LoginNotify_body.php b/LoginNotify_body.php index 436e518..d70bd0a 100644 --- a/LoginNotify_body.php +++ b/LoginNotify_body.php @@ -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' );