Students can register X appointments in this scheduler

Re: Re: Students can register X appointments in this scheduler

by James Sick -
Number of replies: 0
Thank you Henning. I located the code and tested it on a local staging site. The change worked perfectly. I will pass on the information to our IT person who will make the changes on the production site. If others would like to know more details, I located the following code in mod_form.php and changed the "<=10" in the code below to "<=12"

$maxbookoptions = array();
$maxbookoptions['0'] = get_string('unlimited', 'scheduler');
for ($i = 1; $i <= 10; $i++) {
$maxbookoptions[(string)$i] = $i;