From 39a94827268ef62179cdc12c420f0e9b71349bb0 Mon Sep 17 00:00:00 2001 From: wangyuting <851424971@qq.com> Date: Mon, 14 Nov 2022 06:25:51 +0000 Subject: [PATCH] * Fix bug #29709. --- module/testsuite/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/testsuite/control.php b/module/testsuite/control.php index 3bf999347f..98b4023dc1 100644 --- a/module/testsuite/control.php +++ b/module/testsuite/control.php @@ -31,7 +31,7 @@ class testsuite extends control { parent::__construct($moduleName, $methodName); - $this->view->products = $this->products = $this->loadModel('product')->getPairs(); + $this->view->products = $this->products = $this->loadModel('product')->getPairs('', 0, '', 'all'); if(empty($this->products) and !helper::isAjaxRequest()) return print($this->locate($this->createLink('product', 'showErrorNone', "moduleName=qa&activeMenu=testsuite"))); }