From 5bba409ad9a6febca0141354a03609f6c2898689 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Fri, 20 Nov 2020 13:39:50 +0100 Subject: [PATCH] Use U+2022 to black out backup code trailers --- .../system/user/multifactor/BackupMultifactorMethod.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/user/multifactor/BackupMultifactorMethod.class.php b/wcfsetup/install/files/lib/system/user/multifactor/BackupMultifactorMethod.class.php index ce8ba6a07b..05d8fc4b5d 100644 --- a/wcfsetup/install/files/lib/system/user/multifactor/BackupMultifactorMethod.class.php +++ b/wcfsetup/install/files/lib/system/user/multifactor/BackupMultifactorMethod.class.php @@ -81,7 +81,7 @@ class BackupMultifactorMethod implements IMultifactorMethod { ]; while (\count($code['chunks']) < self::CHUNKS) { - $code['chunks'][] = \str_repeat('x', self::CHUNK_LENGTH); + $code['chunks'][] = \str_repeat("\xE2\x80\xA2", self::CHUNK_LENGTH); } } -- 2.20.1