From 3cd65007b31716b149e4819392f655d9062289d7 Mon Sep 17 00:00:00 2001 From: Rex Lorenzo Date: Mon, 8 Mar 2021 12:17:42 -0800 Subject: [PATCH] CCLE-9671 - Waiting room and join before host both get checked * Removing disabedIf condition, relying on JS to keep settings mututally exclusive. --- mod_form.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/mod_form.php b/mod_form.php index 82fbd110..355937c1 100755 --- a/mod_form.php +++ b/mod_form.php @@ -292,7 +292,6 @@ public function definition() { $mform->addHelpButton('option_waiting_room', 'option_waiting_room', 'zoom'); $mform->setDefault('option_waiting_room', $config->defaultwaitingroomoption); $mform->disabledIf('option_waiting_room', 'webinar', 'checked'); - $mform->disabledIf('option_waiting_room', 'option_jbh', 'checked'); // Add join before host widget. $mform->addElement('advcheckbox', 'option_jbh', get_string('option_jbh', 'zoom'), @@ -300,7 +299,6 @@ public function definition() { $mform->setDefault('option_jbh', $config->defaultjoinbeforehost); $mform->addHelpButton('option_jbh', 'option_jbh', 'zoom'); $mform->disabledIf('option_jbh', 'webinar', 'checked'); - $mform->disabledIf('option_jbh', 'option_waiting_room', 'checked'); // Add authenticated users widget. $mform->addElement('advcheckbox', 'option_authenticated_users', get_string('authentication', 'zoom'),