phpcms V9前台静态不显示更新用户的用户名,具体修改方法:
1,content_model.class.php第120行
复制代码 代码示例:
$urls['data']['username'] = $systeminfo['username'];
//end
2,html.class.php第29行:
复制代码 代码示例:
//额。必须要在这里获取传递过来的数组值
$username=$data['username'];
edit_content方法,约280行:
/*编辑部分从主表
数据库中查出用户名,传递模版*/
$temp = $this->get_one(array(‘id’=>$id));
$urls['data']['username'] = $temp['username'];
//end
如此在phpcms v7中发布文章就可以正常显示用户名了。