This is a bug in the normal version as well, but I thought I'd report it here too (since they may not see it over at discuz.net)
The problem is that CURSCRIPT isn't defined for faq.php, which leads to css_special.htm not being loaded for the FAQ. Here's my fix.
In
faq.php find:
复制内容到剪贴板
代码:
<?php
/* [Discuz!] (C)2001-2007 Comsenz Inc.
This is NOT a freeware, use is subject to license terms
$Id: faq.php 12034 2008-01-09 09:07:19Z tiger $
*/Add
below:复制内容到剪贴板
代码:
if(!defined('CURSCRIPT')) {
define('CURSCRIPT', 'faq');
}In
templates/default/header.htm find:
复制内容到剪贴板
代码:
<!--{if CURSCRIPT == 'viewthread'}-->
<link rel="stylesheet" type="text/css" href="forumdata/cache/style_{STYLEID}_viewthread.css" />Replace with:
复制内容到剪贴板
代码:
<!--{if CURSCRIPT == 'viewthread' || CURSCRIPT == 'faq'}-->
<link rel="stylesheet" type="text/css" href="forumdata/cache/style_{STYLEID}_viewthread.css" />