12 lines
259 B
PHP
12 lines
259 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");
|