Issue #20 - Allow changing also past and present outages.

This commit is contained in:
Daniel Thee Roperto
2016-09-08 15:23:15 +10:00
parent b8b3dc7f05
commit 07ee61f4f3
2 changed files with 0 additions and 4 deletions

View File

@@ -72,9 +72,6 @@ class edit extends \moodleform {
public function validation($data, $files) {
$errors = parent::validation($data, $files);
if ($data['starttime'] <= time()) {
$errors['starttime'] = get_string('starttimeerrornotinfuture', 'auth_outage');
}
if ($data['stoptime'] <= $data['starttime']) {
$errors['stoptime'] = get_string('stoptimeerrornotafterstart', 'auth_outage');
}