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');
}

View File

@@ -42,7 +42,6 @@ $string['outagedelete'] = 'Delete Outage';
$string['outagedeletewarning'] = 'You are about to permanently delete the outage below. This cannot be undone.';
$string['outageslist'] = 'Outages List';
$string['pluginname'] = 'Outage manager';
$string['starttimeerrornotinfuture'] = 'Start time must be in the future.';
$string['starttime'] = 'Start date and time';
$string['stoptimeerrornotafterstart'] = 'Stop time must be after start time.';
$string['stoptime'] = 'Stop date and time';