* [bug#58457,done,0.2h] When calling fetchAll with the second parameter set to false, retrieve fields of type text.

This commit is contained in:
hufangzhou
2024-12-23 13:35:04 +08:00
committed by 王于听
parent 13f2966b37
commit caba6479e0
+1 -1
View File
@@ -560,7 +560,7 @@ class stakeholderModel extends model
->where('userID')->eq($userID)
->andWhere('deleted')->eq('0')
->orderBy('id_desc')
->fetchAll();
->fetchAll('id', false);
}
/**