* Finish Task #78697
This commit is contained in:
@@ -950,6 +950,7 @@ class story extends control
|
||||
$this->view->productStories = $productStories;
|
||||
$this->view->branchOption = $branchOption;
|
||||
$this->view->branchTagOption = $branchTagOption;
|
||||
$this->view->branches = $product->type == 'normal' ? array() : $this->loadModel('branch')->getPairs($product->id);
|
||||
$this->view->reviewers = array_keys($reviewerList);
|
||||
$this->view->reviewedReviewer = $reviewedReviewer;
|
||||
$this->view->lastReviewer = $this->story->getLastReviewer($story->id);
|
||||
|
||||
@@ -14,7 +14,7 @@ foreach($siblings as $sibling)
|
||||
{
|
||||
$id = $sibling->id;
|
||||
$title = '#' . $id . ' '. $sibling->title;
|
||||
$branch = $branches[$sibling->branch];
|
||||
$branch = isset($branches[$sibling->branch]) ? $branches[$sibling->branch] : '';
|
||||
$stage = $lang->story->stageList[$sibling->stage];
|
||||
$labelClass = $story->branch == $sibling->branch ? 'label-primary' : '';
|
||||
|
||||
|
||||
@@ -109,7 +109,6 @@
|
||||
<div class='form-group'>
|
||||
<div>
|
||||
<ul class='list-unstyled'>
|
||||
<?php $branches = $branchTagOption;?>
|
||||
<?php include './blocksibling.html.php';?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user