浏览代码

修复在分层控制器下的权限验证错误
修复表单在提交后未返回token时导致的客户端错误

Karson 8 年之前
父节点
当前提交
bcb48fcfed
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      application/common/controller/Backend.php
  2. 1 1
      public/assets/js/require-form.js

+ 1 - 1
application/common/controller/Backend.php

@@ -117,7 +117,7 @@ class Backend extends Controller
             if (!$this->auth->match($this->noNeedRight))
             {
                 // 判断控制器和方法判断是否有对应权限
-                $path = $this->request->path();
+                $path = str_replace('.', '/', $this->request->path());
                 $path = substr($path, 0, 1) == '/' ? $path : '/' . $path;
                 if (!$this->auth->check($path))
                 {

+ 1 - 1
public/assets/js/require-form.js

@@ -51,7 +51,7 @@ define(['jquery', 'bootstrap', 'backend', 'toastr', 'upload', 'validator'], func
                                 }
                                 Toastr.success(msg ? msg : __('Operation completed'));
                             } else {
-                                if (typeof data.token !== 'undefined') {
+                                if (data && typeof data === 'object' && typeof data.token !== 'undefined') {
                                     $("input[name='__token__']").val(data.token);
                                 }
                                 Toastr.error(msg ? msg : __('Operation failed'));