Fix #124 use correct urls in redirects.

This commit is contained in:
Dan Marsden
2018-10-03 15:16:36 +13:00
parent bdf158a677
commit 4ce9f05ebf
3 changed files with 6 additions and 6 deletions

View File

@@ -36,10 +36,10 @@ $PAGE->set_url(new moodle_url('/auth/outage/manage.php'));
$mform = new delete();
if ($mform->is_cancelled()) {
redirect('/auth/outage/manage.php');
redirect(new moodle_url('/auth/outage/manage.php'));
} else if ($fromform = $mform->get_data()) {
outagedb::delete($fromform->id);
redirect('/auth/outage/manage.php');
redirect(new moodle_url('/auth/outage/manage.php'));
}
$id = required_param('id', PARAM_INT);