📄 viewthread_special.inc.php
字号:
<?php
/*
[Discuz!] (C)2001-2007 Comsenz Inc.
This is NOT a freeware, use is subject to license terms
$Id: viewthread_special.inc.php 12615 2008-02-28 09:14:15Z tiger $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$repostnum = $db->result_first("SELECT count(*) FROM {$tablepre}posts WHERE tid='$tid' AND first=0 AND invisible='0'");
$ppp = $forum['threadcaches'] && !$discuz_uid ? $_DCACHE['settings']['postperpage'] : $ppp;
$start_limit = $numpost = ($page - 1) * $ppp;
if($start_limit > $repostnum) {
$start_limit = $numpost = 0;
$page = 1;
}
if($thread['special'] == 3 && $thread['price'] < 0 ) {
$start_limit++;
$repostnum--;
}
$multipage = multi($repostnum, $ppp, $page, "viewthread.php?tid=$tid&do=$do&extra=$extra".(isset($highlight) ? "&highlight=".rawurlencode($highlight) : ''));
$query = $db->query("SELECT p.*,m.username,m.adminid,m.groupid,m.credits FROM {$tablepre}posts p LEFT JOIN {$tablepre}members m ON m.uid=p.authorid WHERE p.tid='$tid' AND p.invisible='0' AND p.first='0' ORDER BY p.dateline LIMIT $start_limit, $ppp");
while($post = $db->fetch_array($query)) {
$post['first'] = 0;
$post = viewthread_procpost($post, 1);
$postlist[$post['pid']] = $post;
}
if($attachpids) {
require_once DISCUZ_ROOT.'./include/attachment.func.php';
parseattach($attachpids, $attachtags, $postlist, $showimages);
}
include template('viewthread_special_post');
exit;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -