VERYCMS 对
论坛的分表读取函数有
问题,只能显示
标题,不能显示内容。官方漏写了一点东西,提供改好的文件,
免费给大家使用。
combine/bbs/class_PHPWind.php
- function getTtable($tid){
- $tmsgs = 'tmsgs';
- $db_tlist = $this->mysql->get_one("SELECT db_value FROM {$this->config['dbpre']}config WHERE db_name='db_tlist'");
- if($db_tlist){
- $tlistdb = unserialize($db_tlist['db_value']);
- foreach($tlistdb as $key=>$value){
- if($key>0 && $tid>$value[1]){//老鱼@www.99pw.com 修正错误。
- $tmsgs = 'tmsgs'.intval($key);
- break;
- }
- }
- } return $tmsgs;
- }
懒人包:
http://www.99pw.com/read.php?tid=718