From 3b7d9b9eacd962b959d716f1490c884a00a01180 Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Mon, 3 Jun 2024 08:34:44 +0800 Subject: [PATCH] * Fix the problem of blank display on the old page. --- module/common/model.php | 1 - 1 file changed, 1 deletion(-) diff --git a/module/common/model.php b/module/common/model.php index 10b202baa1..1b408bf5f8 100644 --- a/module/common/model.php +++ b/module/common/model.php @@ -1210,7 +1210,6 @@ class commonModel extends model * 忽略所有方法名以 ajax 开头的请求。 * Ignore all requests which it's method name starts with 'ajax'. */ - $method = $this->app->getMethodName(); if(strpos($method, 'ajax') === 0) return true; /**