* Finish task#81190.
This commit is contained in:
@@ -2027,7 +2027,7 @@ class execution extends control
|
||||
$productPlans = array(0 => '');
|
||||
$linkedBranches = array();
|
||||
$linkedBranchList = array();
|
||||
$linkedProducts = $this->product->getProducts($executionID, 'all', '', true, $linkedProductIdList);
|
||||
$linkedProducts = $this->product->getProducts($executionID, 'all', '', true, $linkedProductIdList, false);
|
||||
$plans = $this->productplan->getGroupByProduct(array_keys($linkedProducts), 'skipParent|unexpired');
|
||||
$executionStories = $this->project->getStoriesByProject($executionID);
|
||||
|
||||
@@ -2037,7 +2037,7 @@ class execution extends control
|
||||
$linkedStoryIDList = array();
|
||||
foreach($linkedProducts as $productID => $linkedProduct)
|
||||
{
|
||||
if(!isset($allProducts[$productID])) $allProducts[$productID] = $linkedProduct->name;
|
||||
if(!isset($allProducts[$productID])) $allProducts[$productID] = $linkedProduct->deleted ? $linkedProduct->name . "({$this->lang->product->deleted})" : $linkedProduct->name;
|
||||
$productPlans[$productID] = array();
|
||||
|
||||
foreach($branches[$productID] as $branchID => $branch)
|
||||
|
||||
Reference in New Issue
Block a user