diff --git a/module/testcase/ui/view.html.php b/module/testcase/ui/view.html.php
index 6e4b23b202..c6462cde44 100644
--- a/module/testcase/ui/view.html.php
+++ b/module/testcase/ui/view.html.php
@@ -266,6 +266,14 @@ else
);
$actions = $this->loadModel('common')->buildOperateMenu($case);
+ foreach($actions as $actionType => $typeActions)
+ {
+ foreach($typeActions as $index => $action)
+ {
+ if(!isset($action['url'])) continue;
+ $actions[$actionType][$index]['url'] = str_replace('%executionID%', (string)$executionID, $action['url']);
+ }
+ }
}
if($case->stage)