From 2df00955798ee7eb11d1afb92c4726c64075ca05 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 5 Dec 2019 08:54:19 +0200 Subject: [PATCH] fix typo --- api/src/Session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Session.php b/api/src/Session.php index dc85be50e1..7ecdf1a907 100644 --- a/api/src/Session.php +++ b/api/src/Session.php @@ -806,7 +806,7 @@ class Session } else { - throw new \Exception(implode(', $errors'), self::CD_SECOND_FACTOR_REQUIRED); + throw new \Exception(implode(', ', $errors), self::CD_SECOND_FACTOR_REQUIRED); } } }