diff --git a/module/project/js/execution.js b/module/project/js/execution.js index 6a7bde0137..9a3925e050 100644 --- a/module/project/js/execution.js +++ b/module/project/js/execution.js @@ -220,7 +220,6 @@ function showEditCheckbox(show) } else { - var marginLeft = $tr.find('td:first').find('.checkbox-primary').css('margin-left'); $tr.find('td:first').find('[name^="executionIDList"]').parent().remove(); } }); diff --git a/module/story/control.php b/module/story/control.php index d380938315..fcd2c902c0 100755 --- a/module/story/control.php +++ b/module/story/control.php @@ -511,9 +511,11 @@ class story extends control $execution = $this->dao->findById((int)$executionID)->from(TABLE_EXECUTION)->fetch(); if($execution->type == 'project') { + $model = $execution->model == 'waterfallplus' ? 'waterfall' : $execution->model; + $model = $execution->model == 'agileplus' ? 'scrum' : $model; $this->project->setMenu($executionID); $this->lang->navGroup->story = 'project'; - $this->lang->product->menu = $this->lang->{$execution->model}->menu; + $this->lang->product->menu = $this->lang->{$model}->menu; } else { diff --git a/module/task/view/batchcreate.html.php b/module/task/view/batchcreate.html.php index 6c43aa4a59..5ad5835485 100755 --- a/module/task/view/batchcreate.html.php +++ b/module/task/view/batchcreate.html.php @@ -75,7 +75,7 @@ $colspan = count($visibleFields) + 3;