mirror of
https://github.com/torrentpier/torrentpier.git
synced 2025-01-08 03:59:54 -08:00
28 lines
546 B
PHP
28 lines
546 B
PHP
<?php
|
|
|
|
define('BB_ROOT', './../');
|
|
define('IN_FORUM', true);
|
|
define('IN_ADMIN', true);
|
|
|
|
require(BB_ROOT .'common.php');
|
|
require(ATTACH_DIR .'attachment_mod.php');
|
|
require(ATTACH_DIR .'includes/functions_admin.php');
|
|
require_once(INC_DIR .'functions_admin.php');
|
|
|
|
$user->session_start();
|
|
|
|
if (IS_GUEST)
|
|
{
|
|
redirect(LOGIN_URL . "?redirect=admin/index.php");
|
|
}
|
|
|
|
if (!IS_ADMIN)
|
|
{
|
|
bb_die($lang['NOT_ADMIN']);
|
|
}
|
|
|
|
if (!$userdata['session_admin'])
|
|
{
|
|
$redirect = url_arg($_SERVER['REQUEST_URI'], 'admin', 1);
|
|
redirect("login.php?redirect=$redirect");
|
|
} |