13 lines
262 B
PHP
13 lines
262 B
PHP
|
|
<?php
|
||
|
|
define('G5_IS_ADMIN', true);
|
||
|
|
|
||
|
|
include_once "../../common.php";
|
||
|
|
|
||
|
|
include_once G5_ADMIN_PATH . '/admin.lib.php';
|
||
|
|
|
||
|
|
if (isset($token)) {
|
||
|
|
$token = @htmlspecialchars(strip_tags($token), ENT_QUOTES);
|
||
|
|
}
|
||
|
|
|
||
|
|
EventHandler::triggerEvent("gnuboard.admin.load_common");
|