diff --git a/module/execution/ui/tips.html.php b/module/execution/ui/tips.html.php index 474267a3b2..a6998b1a05 100644 --- a/module/execution/ui/tips.html.php +++ b/module/execution/ui/tips.html.php @@ -36,31 +36,36 @@ panel ( set::className('mr-2 tipBtn ml-1'), $lang->execution->setTeam, - set('data-url', createLink('execution', 'team', "executionID={$executionID}")) + set::target('_blank'), + set::url(createLink('execution', 'team', "executionID={$executionID}")) ), $execution->lifetime != 'ops' ? btn ( set::className('mr-2 tipBtn linkstory-btn'), $lang->execution->linkStory, - set('data-url', createLink('execution', 'linkstory', "executionID=$executionID")) + set::target('_blank'), + set::url(createLink('execution', 'linkstory', "executionID=$executionID")) ) : null, btn ( set::className('mr-2 tipBtn'), $lang->execution->createTask, - set('data-url', createLink('task', 'create', "execution=$executionID")) + set::target('_blank'), + set::url(createLink('task', 'create', "execution=$executionID")) ), btn ( set::className('mr-2 tipBtn'), $lang->execution->goback, - set('data-url', createLink('execution', 'task', "executionID={$executionID}")) + set::target('_blank'), + set::url(createLink('execution', 'task', "executionID={$executionID}")) ), btn ( set::className('tipBtn'), $lang->execution->gobackExecution, - set('data-url', createLink('execution', 'all')) + set::target('_blank'), + set::url(createLink('execution', 'all')) ) ) );