From 9988c89d77a1ee46413f6769d6bd52961708f524 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Thu, 8 Jan 2026 10:34:05 +0800 Subject: [PATCH] * [feedback#11098,done,1h] When the path of the deleted document's path is ',xxx', the other document has been filtered out. --- module/doc/tao.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/doc/tao.php b/module/doc/tao.php index fa13823637..3725e521d8 100644 --- a/module/doc/tao.php +++ b/module/doc/tao.php @@ -320,6 +320,8 @@ class docTao extends docModel $deletedDocs = array(); foreach($docs as $docID => $doc) { + $doc->path = ',' . trim($doc->path, ',') . ','; + if($doc->deleted == '0') continue; unset($docs[$docID]);