修改文件\source\module\forum\forum_viewthread.php
['extcredits'.$i].' '.$extcredit['unit'].'>';
} elseif(substr($key, 0, 6) == 'field_') {
$field = substr($key, 6);
if(!empty($post['privacy']['profile'][$field])) {
continue;
}
require_once libfile('function/profile');
$v = profile_show($field, $post);
if($v) {
$v = '>'.
改为0817版中的写法
['extcredits'.$i].' '.$extcredit['unit'].'>';
} elseif(substr($key, 0, 6) == 'field_') {
require_once libfile('function/profile');
$v = profile_show(substr($key, 6), $post);
if($v) {
$v = '>'.
即去掉了蓝色部分,修改了红色部分。
|