Correct the check for 'sesskey'.

This commit is contained in:
Valentin Popov 2018-02-18 17:58:59 +04:00
parent fa74622268
commit 22b7569f71

View File

@ -40,12 +40,12 @@ $context = context_system::instance();
$mform = new service_backup_form($PAGE->url);
/* Cancel processing */
if (($mform->is_cancelled()) && confirm_sesskey()) {
if ($mform->is_cancelled()) {
redirect($managerservice);
}
/* Processing the received file */
if ($data = $mform->get_data()) {
if (($data = $mform->get_data()) && confirm_sesskey()) {
$content = $mform->get_file_content("backupfile");
local_webhooks_restore_backup($content, $data->deleterecords);
redirect($managerservice, new lang_string("restorefinished", "moodle"));