From 37e38e09559da05be7854337832b28d7c755dee3 Mon Sep 17 00:00:00 2001 From: Karen Liu <36342242+karenliulll@users.noreply.github.com> Date: Fri, 10 Nov 2023 14:07:41 -0500 Subject: [PATCH] Change recurrence type default option to "No Fixed Time" --- mod_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod_form.php b/mod_form.php index 773956c0..94d6cb31 100644 --- a/mod_form.php +++ b/mod_form.php @@ -204,10 +204,10 @@ public function definition() { // Add options for recurring meeting. $recurrencetype = [ + ZOOM_RECURRINGTYPE_NOTIME => get_string('recurrence_option_no_time', 'zoom'), ZOOM_RECURRINGTYPE_DAILY => get_string('recurrence_option_daily', 'zoom'), ZOOM_RECURRINGTYPE_WEEKLY => get_string('recurrence_option_weekly', 'zoom'), ZOOM_RECURRINGTYPE_MONTHLY => get_string('recurrence_option_monthly', 'zoom'), - ZOOM_RECURRINGTYPE_NOTIME => get_string('recurrence_option_no_time', 'zoom'), ]; $mform->addElement('select', 'recurrence_type', get_string('recurrencetype', 'zoom'), $recurrencetype); $mform->hideif('recurrence_type', 'recurring', 'notchecked');