diff options
author | Valentin Popov <info@valentineus.link> | 2018-11-02 01:06:47 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-11-02 01:06:47 +0300 |
commit | 2f04aeab6d7b899a661763e20fdd2e58e635b74d (patch) | |
tree | 3db07ee034b353b38df6cc713a7b4007d2a22301 /restorebackup.php | |
parent | 849d7126d8674faac056b941038f5fd59811e34f (diff) | |
download | local_webhooks-2f04aeab6d7b899a661763e20fdd2e58e635b74d.tar.xz local_webhooks-2f04aeab6d7b899a661763e20fdd2e58e635b74d.zip |
Correction of possible problems
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'restorebackup.php')
-rw-r--r-- | restorebackup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/restorebackup.php b/restorebackup.php index 2c0cb39..db052f9 100644 --- a/restorebackup.php +++ b/restorebackup.php @@ -45,7 +45,7 @@ if ($mform->is_cancelled()) { } /* Processing the received file */ -if ($data = $mform->get_data()) { +if (!empty($data = $mform->get_data())) { $content = $mform->get_file_content('backupfile'); local_webhooks_restore_backup($content); redirect($managerservice, new lang_string('restorefinished', 'moodle')); |