修复PHPCMS V9发布文章不显示用户名的bug

发布时间:2020-03-23编辑:脚本学堂
对于phpcms V9前台静态页有时不显示更新用户的用户名,这里给出具体的修改方法。

对于phpcms V9前台静态页有时不显示更新用户的用户名,这里给出具体的修改方法。

1.content_model.class.php第120行://内容编辑用户显示问题

复制代码 代码如下:
$urls['data']['username'] = $systeminfo['username'];
//end

2.html.class.php第29行:

复制代码 代码如下:
//额。必须要在这里获取传递过来的数组值。
$username=$data['username'];
//end

edit_content方法,约280行:

复制代码 代码如下:
/*编辑部分从主表数据库中查出用户名,传递模版*/
$temp = $this->get_one(array(‘id’=>$id));
$urls['data']['username'] = $temp['username'];
//end