typecho修改使注册的人直接可以发表文章
让注册的人成为贡献者组
修改文件 \var\Widget\Register.php 第 68 行:
$dataStruct = array(
'name' => $this->request->name,
'mail' => $this->request->mail,
'screenName'=> $this->request->name,
'password' => $hasher->HashPassword($generatedPassword),
'created' => $this->options->time,
'group' => 'subscriber'
);
数组里面'group'后面就是,将'subscriber'改成'contributor'即可。
让“贡献者”发帖直接通过无需审核
修改 var/Widget/Contents/Post/Edit.php 的第 222 和 299 行(开发板在223和230行)
将“editor”为“contributor”即可。
{
/** 发布内容, 检查是否具有直接发布的权限 */
if ($this->user->pass('editor', true))