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>