There is a file called functions.js. In there you'll find the following code:
function checkAddSchedule() {
var f = document.addSchedule;
var msg = "";
if (f.scheduletitle.value=="")
msg+="-Schedule title is required.\n";
if (parseInt(f.daystart.value) > parseInt(f.dayend.value))
msg+="-Invalid start/end times.\n";
if (f.viewdays.value == "" || parseInt(f.viewdays.value) <= 0)
msg+="Invalid view days.\n";
if (f.adminemail.value == "")
msg+="Admin email is required.\n";
if (msg!="") {
alert("You have the following errors:\n\n"+msg);
return false;
}
return true;
}
Change it to this:
function checkAddSchedule() {
var f = document.addSchedule;
var msg = "";
if (f.scheduletitle.value=="")
msg+="-Schedule title is required.\n";
if (f.viewdays.value == "" || parseInt(f.viewdays.value) <= 0)
msg+="Invalid view days.\n";
if (f.adminemail.value == "")
msg+="Admin email is required.\n";
if (msg!="") {
alert("You have the following errors:\n\n"+msg);
return false;
}
return true;
}
No restart or anything is necessary. Just refresh the page in your browser.