Correction on the main page

This commit is contained in:
Valentin Popov 2017-12-21 10:01:37 +04:00
parent 78e9e435cc
commit 54fb29c5ea

View File

@ -46,7 +46,7 @@ $context = context_system::instance();
/* Delete the service */ /* Delete the service */
if (!empty($deleteid) && confirm_sesskey()) { if (!empty($deleteid) && confirm_sesskey()) {
local_webhooks_remove_record($deleteid); local_webhooks_delete_record($deleteid);
redirect($PAGE->url, new lang_string("deleted", "moodle")); redirect($PAGE->url, new lang_string("deleted", "moodle"));
} }
@ -58,7 +58,7 @@ if (!empty($hideshowid) && confirm_sesskey()) {
/* Deletes all data */ /* Deletes all data */
if (boolval($deleteall) && confirm_sesskey()) { if (boolval($deleteall) && confirm_sesskey()) {
local_webhooks_remove_list_records(); local_webhooks_delete_all_records();
redirect($PAGE->url, new lang_string("deleted", "moodle")); redirect($PAGE->url, new lang_string("deleted", "moodle"));
} }