Skip to content

Commit

Permalink
Change recurrence type default option to "No Fixed Time"
Browse files Browse the repository at this point in the history
  • Loading branch information
karenliulll committed Nov 10, 2023
1 parent ca6bcd5 commit 37e38e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 37e38e0

Please sign in to comment.