From 41f40c7d7a844360f062d20afcc12f6da3a74e30 Mon Sep 17 00:00:00 2001 From: "Shamiso.Jaravaza" <33659194+ssj365@users.noreply.github.com> Date: Wed, 11 May 2022 08:29:16 -0600 Subject: [PATCH] MDL-74726 mod_bigbluebuttonbn: Fix muteonstart Added missing muteonstart_editable in mod_form block condition --- mod/bigbluebuttonbn/mod_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/bigbluebuttonbn/mod_form.php b/mod/bigbluebuttonbn/mod_form.php index 750cb90bb4f..c9a26bea738 100644 --- a/mod/bigbluebuttonbn/mod_form.php +++ b/mod/bigbluebuttonbn/mod_form.php @@ -534,7 +534,7 @@ class mod_bigbluebuttonbn_mod_form extends moodleform_mod { */ private function bigbluebuttonbn_mform_add_block_room(MoodleQuickForm &$mform, array $cfg) { if ($cfg['voicebridge_editable'] || $cfg['waitformoderator_editable'] || - $cfg['userlimit_editable'] || $cfg['recording_editable']) { + $cfg['userlimit_editable'] || $cfg['recording_editable'] || $cfg['muteonstart_editable']) { $mform->addElement('header', 'room', get_string('mod_form_block_room', 'bigbluebuttonbn')); $this->bigbluebuttonbn_mform_add_block_room_room($mform, $cfg); }