From 64a65e69679d86cdbbfd398c667e3c986df5fe39 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Fri, 21 Nov 2025 07:29:53 +0000 Subject: [PATCH] * Fix bug. --- lib/dao/dao.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dao/dao.class.php b/lib/dao/dao.class.php index a5c2204ce7..a7e787dae8 100644 --- a/lib/dao/dao.class.php +++ b/lib/dao/dao.class.php @@ -60,7 +60,7 @@ class dao extends baseDAO if(isset($currentMainTable)) { - if(trim($currentMainTable, '`') == $this->table) + if(trim($currentMainTable, '`') == trim($this->table, '`')) { $data = $this->processData($data); }