Файл: 4wx.ru/isp/func/cron.delete.php
Строк: 42
<?php
if (empty($_GET['sok'])) {
echo '<div class="post"><div style="text-align:center">' . "n";
echo 'Вы действительно хотите удалить задание ' . htmlentities($_GET['elid'], ENT_QUOTES, 'UTF-8') . '?<br />' . "n";
echo '<a href="?func=cron.delete&elid=' . urlencode($_GET['elid']) . '&sok=yes">Да</a> / <a href="?func=cron">Нет</a>' . "n";
echo '</div></div>' . "n";
} else {
$content = api_query('https://' . $server . '/manager/ispmgr?func=cron.delete&elid=' . urlencode($_GET['elid']) . '&out=xml&authinfo=' . urlencode($_SESSION['username']) . ':' . urlencode($_SESSION['password']));
$parse_xml = simplexml_load_string($content);
if (isset($parse_xml->ok)) {
echo '<div class="post"><div style="text-align:center">' . "n";
echo 'Задание успешно удалено!<br />' . "n";
echo '<a href="?func=cron">Продолжить»</a>' . "n";
echo '</div></div>' . "n";
} else {
echo '<div class="post"><div style="text-align:center">' . "n";
echo 'Ошибка при удалении задания!<br />' . "n";
echo '<a href="?func=cron">Продолжить»</a>' . "n";
echo '</div></div>' . "n";
}
}
?>