Ejemplo n.º 1
0
function Next2()
{
    $t = $_GET["t"];
    $tt = time();
    $page = CurrentPageName();
    $tpl = new templates();
    $sock = new sockets();
    $MySQLNgnixType = $sock->GET_INFO("MySQLNgnixType");
    if (!is_numeric($MySQLNgnixType)) {
        $MySQLNgnixType = 1;
    }
    if ($MySQLNgnixType == 1) {
        Next2_server();
        exit;
    }
    if ($MySQLNgnixType == 2) {
        Next2_client();
        exit;
    }
}
Ejemplo n.º 2
0
function Next2(){
	$t=$_GET["t"];
	$tt=time();
	$page=CurrentPageName();
	$tpl=new templates();

	$sock=new sockets();
	$MySQLSyslogType=$sock->GET_INFO("RoundCubeMySQLServiceType");
	if(!is_numeric($MySQLSyslogType)){$MySQLSyslogType=3;}
	if($MySQLSyslogType==3){Next2_server();exit;}
	if($MySQLSyslogType==4){Next2_client();exit;}
}