';
if (empty($_REQUEST)) {
echo '
';
//header("refresh:3;url=".$config['domain']."");
} elseif (isset($_GET['url'])) {
$img = $_GET['url'];
echo '
';
}
// 解密删除
if (isset($_GET['hash'])) {
$delHash = $_GET['hash'];
$delHash = urlHash($delHash, 1);
getDel($delHash, 'hash');
}
// 检查登录后再处理url删除请求
if (is_online()) {
if (isset($_GET['url'])) {
getDel($_GET['url'], 'url');
}
} else {
if (isset($_GET['url'])) {
echo '
';
//header("refresh:2;url=".$config['domain']."/application/login.php");
}
}
require_once APP_ROOT . '/application/footer.php';
?>