thread.php
查找
复制程式
$guidename=forumindex($foruminfo['fup']);
$msg_guide=headguide($guidename)
修改为
复制程式
//修改,主题分类增强插件
$guidename=forumindex($foruminfo['fup']);
查找
复制程式
unset($t_typedb[0]);/* 0 */
if($t_db && is_numeric($type) && isset($t_typedb[$type])){
修改为
复制程式
//修改,主题分类增强插件
if($t_db && ($t_typedb[0]<>0)){
$t_typedb[0]='默认分类'
}
if($t_db && is_numeric($type) && isset($t_typedb[$type])){
//修改,主题分类增强插件
$typeplus_link="&type=$type";
$guidename[$t_typedb[$type]]="thread.php?fid=$fid&type=$type";
查找
复制程式
$winddb['t_num'] && $db_perpage=$winddb['t_num'];
$winddb['p_num'] && $db_readperpage=$winddb['p_num'];
修改为
复制程式
//修改,主题分类增强插件
$msg_guide=headguide($guidename);
$winddb['t_num'] && $db_perpage=$winddb['t_num'];
$winddb['p_num'] && $db_readperpage=$winddb['p_num'];
查找
复制程式
修改为
复制程式
//修改,主题分类增强插件
if(($thread['type'])&&(!($type))) {
$thread['typename'] = "<font color=royalblue>[".$t_typedb[$thread[type]]."]</font></a>";
}
$threaddb[]=$thread;
开post.php
查找
复制程式
if ($action=="new"||$action=="vote"){
修改为
复制程式
//修改,主题分类增强插件
if(!(is_numeric($type))){
unset($type);
}
if ($action=="new"||$action=="vote"){
template/风格名称/thread.htm
查找
复制程式
<a href='$thread[tpcurl]'>$thread[subject]</a>
修改为
复制程式
$thread[typename]<a href='$thread[tpcurl]'>$thread[subject]</a>
查找
复制程式
<td align=right><a href='post.php?fid=$fid'><img src='$imgpath/$stylepath/post.gif'></a>
<a href='post.php?action=vote&fid=$fid'><img src='$imgpath/$stylepath/vote.gif'></a>
修改为
复制程式
<td align=right><a href='post.php?fid=$fid$typeplus_link'><img src='$imgpath/$stylepath/post.gif'></a>
<a href='post.php?action=vote&fid=$fid$typeplus_link'><img src='$imgpath/$stylepath/vote.gif'></a>
查找
复制程式
<tr><td align=left>{$fenye} $db_perpage/页 {$count}篇文章</td>
<td align=right><a href='post.php?fid=$fid'><img src='$imgpath/$stylepath/post.gif'></a>
<a href='post.php?action=vote&fid=$fid'>
<img src='$imgpath/$stylepath/vote.gif'></a>
修改为
复制程式
<tr><td align=left>{$fenye} $db_perpage/页 {$count}篇文章</td>
<td align=right><a href='post.php?fid=$fid$typeplus_link'><img src='$imgpath/$stylepath/post.gif'></a>
<a href='post.php?action=vote&fid=$fid$typeplus_link'>
<img src='$imgpath/$stylepath/vote.gif'></a>
template/风格名称/post.htm
查找
复制程式
<tr><td class='t_one'>主题分类</td>
<td class='t_one'>
<SELECT name=p_type onchange='add_title(this.options[this.selectedIndex].text)'>
<OPTION value=0>默认分类</OPTION>
<!--
EOT;
foreach($t_typedb as $key=>$value){
if($value){
print <<<EOT
-->
<OPTION $t_checked[$key] value=$key>$value</OPTION>
<!--
EOT;
}
}print <<<EOT
-->
</select></td></tr>
修改为
复制程式
<tr><td class='t_one'>主题分类</td>
<td class='t_one'>
<SELECT name=p_type>
<OPTION value=0>默认分类</OPTION>
<!--
EOT;
foreach($t_typedb as $key=>$value){
if($value){if($type==$key){
print <<<EOT
-->
<OPTION $t_checked[$key] value=$key selected>$value</OPTION>
<!--
EOT;
}else {
print <<<EOT
-->
<OPTION $t_checked[$key] value=$key>$value</OPTION>
<!--
EOT;
}}
}print <<<EOT
-->
</select></td></tr>