From 6508a7267353116bf90e11eb0b471d7bb052cdbc Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Thu, 8 Jun 2023 11:53:54 +0200 Subject: [PATCH 1/2] Fix initialize of inline script of QR code --- docs/CHANGELOG.md | 4 ++++ module.json | 2 +- views/config/userGoogleAuthenticatorCode.php | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index ecc49a5..a6aec00 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +1.1.3 (Unreleased) +------------------- +- Fix #53: Fix initialize of inline script of QR code + 1.1.2 (May 17, 2023) ------------------- - Fix #55: Don't send a verification code when trusted IP address diff --git a/module.json b/module.json index 275010d..70e0104 100644 --- a/module.json +++ b/module.json @@ -12,7 +12,7 @@ "resources/screen2.png", "resources/screen3.png" ], - "version": "1.1.2", + "version": "1.1.3", "humhub": { "minVersion": "1.11" } diff --git a/views/config/userGoogleAuthenticatorCode.php b/views/config/userGoogleAuthenticatorCode.php index 8910da8..7b37e6f 100644 --- a/views/config/userGoogleAuthenticatorCode.php +++ b/views/config/userGoogleAuthenticatorCode.php @@ -5,6 +5,7 @@ * @license https://www.humhub.com/licences */ +use humhub\libs\Html; use humhub\modules\twofa\helpers\TwofaHelper; /* @var $qrCodeText string */ @@ -39,7 +40,7 @@ - \ No newline at end of file + From fe2720755327fac5438ac20876ede39913dc656b Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Thu, 8 Jun 2023 12:05:01 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- docs/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index a6aec00..b70401f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,8 +1,8 @@ Changelog ========= -1.1.3 (Unreleased) -------------------- +1.1.3 (June 8, 2023) +-------------------- - Fix #53: Fix initialize of inline script of QR code 1.1.2 (May 17, 2023)