Файл: go.php
Строк: 42
<?
include_once 'sys/inc/start.php';
include_once 'sys/inc/compress.php';
include_once 'sys/inc/sess.php';
include_once 'sys/inc/home.php';
include_once 'sys/inc/settings.php';
include_once 'sys/inc/db_connect.php';
include_once 'sys/inc/ipua.php';
include_once 'sys/inc/fnc.php';
include_once 'sys/inc/user.php';
$set['title']='Перенаправление';
include_once 'sys/inc/thead.php';
title();
if (preg_match('#^(ht|f)tps?://#',base64_decode($_GET['go']))){
if (isset($_SESSION['adm_auth']))unset($_SESSION['adm_auth']);
exit(header("Location: ".base64_decode($_GET['go'])));
}
else
exit(header ("Location: /index.php"));
include_once 'sys/inc/tfoot.php';
?>