From 95419d98d9f8fc897f4a5ab7e3e6802872ebb4dc Mon Sep 17 00:00:00 2001 From: tianshujie Date: Tue, 25 Apr 2023 11:21:47 +0800 Subject: [PATCH] * Fix bug #34718. --- module/doc/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/doc/control.php b/module/doc/control.php index 88f4bd69b6..84ae45fb2e 100755 --- a/module/doc/control.php +++ b/module/doc/control.php @@ -1309,7 +1309,7 @@ class doc extends control $this->view->libs = $libs; $this->view->apiID = 0; $this->view->release = 0; - $this->view->apiList = $browseType == 'bySearch' ? $this->api->getApiListBySearch($libID, $queryID, $type, array_keys($libs)) : $this->api->getListByModuleId($libID, $moduleID, 0, $pager); + $this->view->apiList = $browseType == 'bySearch' ? $this->api->getApiListBySearch($libID, $queryID, $type, array_keys($libs)) : $this->api->getListByModuleId($libID, $moduleID, $param, $pager); } else {