* [misc,done,0.2h] fix block error.

This commit is contained in:
tianshujie
2024-12-03 14:24:59 +08:00
committed by 刘梦艺
parent 05021ed867
commit 92dc28caf9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -699,7 +699,7 @@ class actionTao extends actionModel
->beginIF($actionCondition)->andWhere("($actionCondition)")->fi()
->orderBy($orderBy)
->limit($limit)
->fetchAll();
->fetchAll('', false);
}
/**
+1 -1
View File
@@ -108,7 +108,7 @@ class blockModel extends model
->andWhere('hidden')->eq(0)
->andWhere('vision')->eq($this->config->vision)
->orderBy('width_desc,top_asc,id_asc')
->fetchAll();
->fetchAll('', false);
}
/**