mirror of
https://github.com/catalyst/moodle-auth_outage.git
synced 2026-05-16 21:41:31 +02:00
Issue #20 - Allow changing also past and present outages.
This commit is contained in:
@@ -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');
|
||||
}
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user