From d9c6db859d5af33decd7072cc5fb39362ff3bb16 Mon Sep 17 00:00:00 2001 From: liugang Date: Thu, 22 Sep 2022 09:49:03 +0800 Subject: [PATCH] * Fix bug. --- module/story/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/control.php b/module/story/control.php index ee8839ccf2..53d643c5f3 100755 --- a/module/story/control.php +++ b/module/story/control.php @@ -2227,7 +2227,7 @@ class story extends control /* Get story, product, products, and queryID. */ $story = $this->story->getById($storyID); - $products = $this->product->getPairs('', 0, '', true); + $products = $this->product->getPairs('', 0, '', 'all'); $queryID = 0; $product = $this->product->getByID($story->product);