首页| 版块| 我的| 发帖| 消息
主题:登录页左侧图片加圆角效果和前台管理日志链接
zhangjingyu 
lib/forum/postmodify.class.php(红色新增代码为获取帖子pid)
function editlog() {
if ($this->post->uid != $this->atcdb['authorid'] && ($this->post->isGM || pwRights($this->post->isBM, 'deltpcs'))) {
/**
* 管理员编辑帖子的安全日记
*/
global $timestamp, $onlineip;
require_once (R_P . 'require/writelog.php');
$log = array(
'type' => 'edit',
'username1' => $this->atcdb['author'],
'username2' => $this->post->username,
'field1' => $this->forum->fid,
'field2' => '',
'field3' => '',
'descrip' => 'edit_descrip',
'timestamp' => $timestamp,
'ip' => $onlineip,
'tid' => $this->tid,
'pid' => $this->pid,//2021.8.25
'forum' => $this->forum->name,
'subject' => substrs($this->data['title'], 28),
'reason' => 'edit article'
);
writelog($log);
}
}
}
zhangjingyu回帖于2021-08-25 21:12[查看电脑版]
下一楼»:上面的函数中有“'tid' => $this->tid,”,再把pid加进去,是否就能获取呢?另外,测试 ..
«上一楼:既然开始了,那就继续检索“edit_descrip”再看看吧。

查看全部回帖(41)
«返回主帖