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