diff --git a/module/tutorial/config/scrumProjectManage.php b/module/tutorial/config/scrumProjectManage.php index 085f2af0f5..5b36b054f5 100644 --- a/module/tutorial/config/scrumProjectManage.php +++ b/module/tutorial/config/scrumProjectManage.php @@ -120,6 +120,7 @@ $scrumProjectManage->tasks['manageExecution']['steps'][] = array( 'type' => 'click', 'target' => '#mainMenu #actionBar a.create-execution-btn', 'page' => 'project-execution', + 'url' => array('project', 'execution', 'status=all&projectID=2'), 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step2->name, 'desc' => $lang->tutorial->scrumProjectManage->manageExecution->step2->desc ); @@ -142,7 +143,7 @@ $scrumProjectManage->tasks['manageExecution']['steps'][] = array( $scrumProjectManage->tasks['manageExecution']['steps'][] = array( 'type' => 'click', - 'target' => '#table-project-execution div[data-row="pid2"] a', + 'target' => '#table-project-execution div[data-row="pid3"] a', 'page' => 'project-execution', 'url' => array('project', 'execution', 'status=all&projectID=2'), 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step5->name, diff --git a/module/tutorial/model.php b/module/tutorial/model.php index ceef45f03e..c34edcef9e 100644 --- a/module/tutorial/model.php +++ b/module/tutorial/model.php @@ -226,7 +226,7 @@ class tutorialModel extends model */ public function getExecutionStats($browseType = ''): array { - $execution = $this->getProject(); + $execution = $this->getExecution(); $execution->progress = 0; $execution->estimate = 0; @@ -469,7 +469,6 @@ class tutorialModel extends model { $account = $this->app->user->account; - $users[''] = ''; $users[$account] = $account; $users['test'] = 'Test'; return $users;