diff --git a/app/admin/controller/Auth.php b/app/admin/controller/Auth.php index dfac958ec..f4c77f1f8 100644 --- a/app/admin/controller/Auth.php +++ b/app/admin/controller/Auth.php @@ -115,7 +115,7 @@ class Auth extends Controller * 表单后置数据处理 * @param array $data */ - protected function _apply_form_filter(array &$data) + protected function _apply_form_filter(array $data) { if ($this->request->isGet()) { $this->title = "编辑【{$data['title']}】授权"; diff --git a/app/admin/controller/Base.php b/app/admin/controller/Base.php index 9ae1bad09..3fd8e72fc 100644 --- a/app/admin/controller/Base.php +++ b/app/admin/controller/Base.php @@ -70,7 +70,7 @@ class Base extends Controller * @param array $data * @throws \think\db\exception\DbException */ - protected function _form_filter(array &$data) + protected function _form_filter(array $data) { if ($this->request->isGet()) { $this->types = SystemBase::types(); diff --git a/app/admin/controller/Config.php b/app/admin/controller/Config.php index a88878012..ce718e23f 100644 --- a/app/admin/controller/Config.php +++ b/app/admin/controller/Config.php @@ -61,9 +61,7 @@ class Config extends Controller /** * 修改系统参数 * @auth true - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException + * @throws \think\admin\Exception */ public function system() { @@ -100,9 +98,7 @@ class Config extends Controller /** * 修改文件存储 * @auth true - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException + * @throws \think\admin\Exception */ public function storage() { diff --git a/app/admin/controller/api/System.php b/app/admin/controller/api/System.php index 970b07587..6fd546312 100644 --- a/app/admin/controller/api/System.php +++ b/app/admin/controller/api/System.php @@ -90,9 +90,7 @@ class System extends Controller /** * 修改富文本编辑器 * @return void - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException + * @throws \think\admin\Exception */ public function editor() { diff --git a/app/admin/view/api/upload.js b/app/admin/view/api/upload.js index 69001aadf..97e12056d 100644 --- a/app/admin/view/api/upload.js +++ b/app/admin/view/api/upload.js @@ -145,6 +145,7 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { uploader.form.append('Content-Disposition', 'inline;filename=' + encodeURIComponent(file.name)); } uploader.form.append('file', file, file.name), jQuery.ajax({ + xhrFields: {withCredentials: ret.data.uptype === 'local'}, url: uploader.url, data: uploader.form, type: 'post', xhr: function (xhr) { xhr = new XMLHttpRequest(); return xhr.upload.addEventListener('progress', function (event) { diff --git a/app/admin/view/config/index.html b/app/admin/view/config/index.html index 9e91b7194..25d5bdee9 100644 --- a/app/admin/view/config/index.html +++ b/app/admin/view/config/index.html @@ -64,7 +64,7 @@ {if !sysconf('storage.link_type')}{php}sysconf('storage.link_type','none');{/php}{/if} {if !sysconf('storage.name_type')}{php}sysconf('storage.name_type','xmd5');{/php}{/if} {if !sysconf('storage.allow_exts')}{php}sysconf('storage.allow_exts','doc,gif,ico,jpg,mp3,mp4,p12,pem,png,rar,xls,xlsx');{/php}{/if} - {if !sysconf('storage.local_http_protocol')}{php}sysconf('storage.local_http_protocol','http');{/php}{/if} + {if !sysconf('storage.local_http_protocol')}{php}sysconf('storage.local_http_protocol','follow');{/php}{/if}