From 91f1f065768f6e9fa91062c06e467d301e159795 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Fri, 25 Oct 2024 05:18:48 +0000 Subject: [PATCH] * [task#131245,done,0.2h] fix bug. --- module/product/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/product/model.php b/module/product/model.php index 8f9d13ac4a..dea1b0c233 100755 --- a/module/product/model.php +++ b/module/product/model.php @@ -2037,7 +2037,7 @@ class productModel extends model { $flow = $this->loadModel('workflow')->getByModule($module); if(in_array($flow->app, array('scrum', 'waterfall'))) $flow->app = 'project'; - if(!empty($flow) && $flow->buildin == '0') return helper::createLink('flow', 'ajaxSwitchBelong', "objectID=%s&moduleName=$module") . "app=$flow->app"; + if(!empty($flow) && $flow->buildin == '0') return helper::createLink('flow', 'ajaxSwitchBelong', "objectID=%s&moduleName=$module") . "#app=$flow->app"; } if($module == 'execution' && in_array($method, array('bug', 'testcase'))) return helper::createLink($module, $method, "executionID={$params[0]}&productID=%s{$branchParam}");