From 6a4a18f968140ee81aeb95a67ad10047f4ac89fb Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Tue, 26 May 2020 12:21:00 +0200 Subject: [PATCH] Minor - fix guest name --- plugin/bbb/lib/bbb.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/bbb/lib/bbb.lib.php b/plugin/bbb/lib/bbb.lib.php index 174da2b64e..6a4419299d 100755 --- a/plugin/bbb/lib/bbb.lib.php +++ b/plugin/bbb/lib/bbb.lib.php @@ -108,7 +108,7 @@ class bbb } if (api_is_anonymous()) { - $this->userCompleteName = get_lang('Guest').rand(1000, 9999); + $this->userCompleteName = get_lang('Guest').'_'.rand(1000, 9999); } $this->salt = $bbb_salt;