Файл: mobile/func/wwwdomain.disable.php
Строк: 27
<?php
$content = api_query('https://' . $server . '/manager/ispmgr?func=wwwdomain.disable&elid=' . urlencode($_GET['elid']) . '&out=xml&auth=' . urlencode($_SESSION['auth']));
$parse_xml = simplexml_load_string($content);
if (isset($parse_xml->ok)) {
echo '<div style="text-align:center">' . "n";
echo 'WWW домен успешно выключен!<br />' . "n";
echo '<a href="?func=wwwdomain">Продолжить»</a>' . "n";
echo '</div>' . "n";
} else {
echo '<div style="text-align:center">' . "n";
echo 'Ошибка при выключении WWW домена!<br />' . "n";
echo '<a href="?func=wwwdomain">Продолжить»</a>' . "n";
echo '</div>' . "n";
}
?>