打开论坛根目录下的space.php
找到:
@$percent
在其上面加:
- @$threadnum = $db->result_first("SELECT COUNT(*) FROM {$tablepre}threads Where authorid='$member[uid]'");
- $postnum = $member['posts'] - $threadnum;
复制代码
打开:templates/default/viewpro_classic.htm
找到:
- ({lang post_percent} $percent%)
复制代码
将其替换成:
- ({lang post_percent} $percent% 主题数: $threadnum 回复数: $postnum)
复制代码
后台更新缓存即可 |