diff --git a/webui/module/Job/src/Job/Controller/JobController.php b/webui/module/Job/src/Job/Controller/JobController.php index 53dff961788..bdc08a8b419 100644 --- a/webui/module/Job/src/Job/Controller/JobController.php +++ b/webui/module/Job/src/Job/Controller/JobController.php @@ -128,6 +128,8 @@ public function indexAction() ); } else { $result = $this->getJobModel()->rerunJob($this->bsock, $jobid); + $jobid = rtrim( substr( $result, strrpos($result, "=") + 1 ) ); + return $this->redirect()->toRoute('job', array('action' => 'details', 'id' => $jobid)); } } catch(Exception $e) {