解决phpcms作者名不显示的方法

V9前台静态有时候不显示更新用户的用户名,具体修改方法如下:

首先要在根目录文件里面找到content_model.class.php文件,用EditPlus工具或者其他编辑器工具打开

content_model.class.php第120行

$urls['data']['username'] = $systeminfo['username'];
//end

html.class.php第29行:

//必须要在这里获取传递过来的数组值
$username=$data['username'];

edit_content方法,约280行:

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

原创文章,作者:DRIHE,如若转载,请注明出处:http://www.wangzhanshi.com/n/17122.html

(0)
DRIHE的头像DRIHE
上一篇 2025年1月2日 12:43:53
下一篇 2025年1月2日 12:43:55

相关推荐

发表回复

登录后才能评论