diff options
author | Valentin Popov <info@valentineus.link> | 2017-12-21 09:01:37 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-12-21 09:01:37 +0300 |
commit | 54fb29c5eade136d16251d453a335632220caae1 (patch) | |
tree | c6abdd85654a24dee4cb31b71ad89f6ac2c5d6e4 | |
parent | 78e9e435cc7c505883abe345fc2f033a0a69368f (diff) | |
download | local_webhooks-54fb29c5eade136d16251d453a335632220caae1.tar.xz local_webhooks-54fb29c5eade136d16251d453a335632220caae1.zip |
Correction on the main page
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -46,7 +46,7 @@ $context = context_system::instance(); /* Delete the service */ if (!empty($deleteid) && confirm_sesskey()) { - local_webhooks_remove_record($deleteid); + local_webhooks_delete_record($deleteid); redirect($PAGE->url, new lang_string("deleted", "moodle")); } @@ -58,7 +58,7 @@ if (!empty($hideshowid) && confirm_sesskey()) { /* Deletes all data */ if (boolval($deleteall) && confirm_sesskey()) { - local_webhooks_remove_list_records(); + local_webhooks_delete_all_records(); redirect($PAGE->url, new lang_string("deleted", "moodle")); } |