示例#1
0
function SaveProxySettings()
{
    $artica = new artica_general();
    $_GET["ArticaProxyServerUserPassword"] = url_decode_special_tool($_GET["ArticaProxyServerUserPassword"]);
    while (list($num, $ligne) = each($_GET)) {
        $artica->{$num} = $ligne;
    }
    $artica->SaveProxySettings();
    $users = new usersMenus();
    if ($users->HAMACHI_INSTALLED) {
        $sock = new sockets();
        $sock->getFrameWork("hamachi.php?hamachi-restart=yes");
    }
}
示例#2
0
function SaveProxySettings()
{
    $artica = new artica_general();
    while (list($num, $ligne) = each($_GET)) {
        $artica->{$num} = $ligne;
    }
    $artica->SaveProxySettings();
}
示例#3
0
function SaveProxySettings()
{
    $artica = new artica_general();
    while (list($num, $ligne) = each($_GET)) {
        $artica->{$num} = $ligne;
    }
    $artica->SaveProxySettings();
    $tpl = new templates();
    echo $tpl->_ENGINE_parse_body('{success}');
}