11 lines
226 B
PHP
11 lines
226 B
PHP
<?php
|
|
include_once ("core/config.php");
|
|
include_once ("proxy/ext/function_proxy.php");
|
|
login_proxy();
|
|
session_name("authmail");
|
|
session_start();
|
|
$_SESSION['auth'] = 0;
|
|
session_destroy();
|
|
header('Location: main_proxy.php');
|
|
?>
|