From d42a35f578e2577cd5ce534cc8ee6016751f78d8 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 10 Jan 2024 09:59:00 +0800 Subject: [PATCH] * Code for task #42695. --- module/program/control.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/program/control.php b/module/program/control.php index c876219665..e848ec15c3 100644 --- a/module/program/control.php +++ b/module/program/control.php @@ -33,7 +33,7 @@ class program extends control * @access public * @return void */ - public function browse(string $status = 'unclosed', string $orderBy = 'order_asc', int $recTotal = 0, int $recPerPage = 10, int $pageID = 1, int $param = 0) + public function browse(string $status = 'unclosed', string $orderBy = 'order_asc', int $recTotal = 0, int $recPerPage = 100, int $pageID = 1, int $param = 0) { $uri = $this->app->getURI(true); $this->session->set('programList', $uri, 'program'); @@ -688,7 +688,7 @@ class program extends control * @access public * @return void */ - public function productView(string $browseType = 'unclosed', string $orderBy = 'program_asc', int $param = 0, int $recTotal = 0, int $recPerPage = 20, int $pageID = 1) + public function productView(string $browseType = 'unclosed', string $orderBy = 'program_asc', int $param = 0, int $recTotal = 0, int $recPerPage = 100, int $pageID = 1) { /* Load module and set session. */ $this->loadModel('product');