|
|
PHPDisk Team V-Core File Edition 6.5.0
在admin目录下的report.tpl.php文件,找到第83行- $rs2 = $db->fetch_one_array("select u.userid,username from {$tpf}reports r, {$tpf}users u where r.userid=u.userid and r.file_id='{$rs['file_id']}'");
复制代码 在username后面加上content即可- $rs2 = $db->fetch_one_array("select u.userid,username,content from {$tpf}reports r, {$tpf}users u where r.userid=u.userid and r.file_id='{$rs['file_id']}'");
复制代码 |
|