You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
448 B
16 lines
448 B
<?php |
|
$supress_master = 1; |
|
|
|
if (!$user->isAuthenticated() || !$user->isAdmin($_SESSION['USERDATA']['id'])) { |
|
header("HTTP/1.1 404 Page not found"); |
|
die("404 Page not found"); |
|
} |
|
|
|
define('TGAPI_URL', 'https://api.telegram.org/bot' . $config['push']['telegram']['api_key']); |
|
|
|
curl_setopt_array($ch = curl_init(), array( |
|
CURLOPT_URL => TGAPI_URL . "/deleteWebhook", |
|
CURLOPT_RETURNTRANSFER => true, |
|
)); |
|
echo curl_exec($ch); |
|
curl_close($ch);
|
|
|