From b88cbfa91349bfcdab6cd84a726a193dc4b08a6a Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Tue, 2 Aug 2022 08:54:40 +0800 Subject: [PATCH] * Code for get history log. --- module/action/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/action/model.php b/module/action/model.php index 695c954c7d..12289ca4c0 100755 --- a/module/action/model.php +++ b/module/action/model.php @@ -787,7 +787,7 @@ class actionModel extends model */ public function getHistory($actionID) { - return $this->dao->select()->from(TABLE_HISTORY)->where('action')->in($actionID)->orderBy('id')->fetchGroup('action'); + return $this->dao->select()->from(TABLE_HISTORY)->where('action')->in($actionID)->fetchGroup('action'); } /**