diff --git a/module/bug/js/common.ui.js b/module/bug/js/common.ui.js index e6b97bd348..96493aac1d 100644 --- a/module/bug/js/common.ui.js +++ b/module/bug/js/common.ui.js @@ -33,6 +33,7 @@ function changeProduct(event) loadProductBuilds(productID); loadProductPlans(productID); loadProductStories(productID, bug.storyID); + if(config.currentMethod == 'edit' && edition == 'max') loadIdentify(); } } @@ -57,6 +58,7 @@ function changeProject(event) loadExecutionLabel(projectID); loadExecutions(productID, projectID); loadAssignedTo(productID, projectID); + if(config.currentMethod == 'edit' && edition == 'max') loadIdentify(); } function changeExecution(event) diff --git a/module/bug/ui/edit.html.php b/module/bug/ui/edit.html.php index 441718f12e..1417b92a48 100644 --- a/module/bug/ui/edit.html.php +++ b/module/bug/ui/edit.html.php @@ -20,6 +20,7 @@ jsVar('tab', $this->app->tab); jsVar('released', $lang->build->released); jsVar('confirmUnlinkBuild', sprintf($lang->bug->notice->confirmUnlinkBuild, zget($resolvedBuilds, $bug->resolvedBuild))); jsVar('projectExecutionPairs', $projectExecutionPairs); +jsVar('edition', $config->edition); detailHeader ( @@ -324,6 +325,7 @@ detailBody ), item ( + set::trClass('browserTR'), set::name($lang->bug->browser), set::required(strpos(",{$config->bug->edit->requiredFields},", ',browser,') !== false), formGroup diff --git a/module/bug/zen.php b/module/bug/zen.php index 66abd3c23e..ccf99d36b1 100644 --- a/module/bug/zen.php +++ b/module/bug/zen.php @@ -1137,6 +1137,7 @@ class bugZen extends bug /* Get branch options. */ $branchTagOption = array(); if($product->type != 'normal') $branchTagOption = $this->getBranchOptions($product->id); + if($this->config->edition == 'max') $this->view->injectionList = $this->view->identifyList = $this->loadModel('review')->getPairs($bug->project, $bug->product, true); $this->assignVarsForEdit($bug);