Files
web-discuz/source/plugin/replyfloor/jump.inc.php
2025-06-27 21:04:18 +08:00

38 lines
1.1 KiB
PHP

<?php
/**
* This is NOT a freeware, use is subject to license terms
* 应用名称: 贴吧楼中楼回复 9.0
* 下载地址: https://addon.dismall.com/plugins/replyfloor.html
* 应用开发者: 乘凉
* 开发者QQ: 594433766
* 更新日期: 202505310549
* 授权域名: www.shitangsweet.com
* 授权码: 2025053105b89RrI3R9n
* 未经应用程序开发者/所有者的书面许可,不得进行反向工程、反向汇编、反向编译等,不得擅自复制、修改、链接、转载、汇编、发表、出版、发展与之有关的衍生产品、作品等
*/
/**
* $author: 乘凉 $
*/
if (!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$url = '';
$timestamp = 0;
$_GET['hash'] = empty($_GET['hash']) ? '' : $_GET['hash'];
if($_GET['hash']) {
list($url, $timestamp) = explode("\t", authcode($_GET['hash'], 'DECODE', md5(substr(md5($_G['config']['security']['authkey']), 0, 16))));
}else{
showmessage(lang('plugin/'.CURMODULE, 'replyfloor_url_nonexistence'));
}
if(!$url){
showmessage(lang('plugin/'.CURMODULE, 'replyfloor_url_nonexistence'));
}
$url = str_replace('&amp;', '&', $url);
header('Location: '.$url);
exit();