From d47e91c07e1cf22331ac3eb6623a6eafec59183c Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Wed, 24 Apr 2024 11:20:10 +0800 Subject: [PATCH] * Fix bug #48293. --- module/bug/zen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/zen.php b/module/bug/zen.php index f31506e125..be481be098 100644 --- a/module/bug/zen.php +++ b/module/bug/zen.php @@ -1061,7 +1061,7 @@ class bugZen extends bug $bug = $this->getBuildsForCreate($bug); $bug = $this->getStoriesForCreate($bug); $bug = $this->gettasksForCreate($bug); - if($this->config->edition == 'max') $this->view->injectionList = $this->view->identifyList = $this->loadModel('review')->getPairs($bug->projectID, $bug->productID, true); + if(in_array($this->config->edition, array('max', 'ipd'))) $this->view->injectionList = $this->view->identifyList = $this->loadModel('review')->getPairs($bug->projectID, $bug->productID, true); $this->view->title = isset($this->products[$bug->productID]) ? $this->products[$bug->productID] . $this->lang->colon . $this->lang->bug->create : $this->lang->bug->create; $this->view->productMembers = $this->getProductMembersForCreate($bug);