修改系统配置

This commit is contained in:
Anyon 2020-05-12 14:09:50 +08:00
parent c0cb312f0b
commit ebb1024391
2 changed files with 2 additions and 5 deletions

View File

@ -80,7 +80,6 @@ class Auth extends Controller
*/
public function state()
{
$this->_applyFormToken();
$this->_save($this->table, ['status' => input('status')]);
}

View File

@ -115,13 +115,11 @@ class Config extends Controller
$post = $this->request->post();
if (!empty($post['storage']['allow_exts'])) {
$exts = array_unique(explode(',', strtolower($post['storage']['allow_exts'])));
if (in_array('php', $exts)) $this->error('禁止上传可执行文件到本地服务器!');
sort($exts);
if (in_array('php', $exts)) {
$this->error('禁止上传可执行文件到本地服务器!');
}
$post['storage']['allow_exts'] = join(',', $exts);
}
foreach ($post as $key => $value) sysconf($key, $value);
foreach ($post as $name => $value) sysconf($name, $value);
$this->success('修改文件存储成功!');
}