diff --git a/module/execution/view/executionkanban.html.php b/module/execution/view/executionkanban.html.php
index ce925b76b9..9090d1e90c 100644
--- a/module/execution/view/executionkanban.html.php
+++ b/module/execution/view/executionkanban.html.php
@@ -52,13 +52,15 @@
project) . ' / ' . $execution->name : $execution->name;
+
if(common::hasPriv('execution', 'task'))
{
- echo html::a($this->createLink('execution', 'task', "executionID=$execution->id"), $execution->name, '', "title='{$execution->name}'");
+ echo html::a($this->createLink('execution', 'task', "executionID=$execution->id"), $executionName, '', "title='{$executionName}'");
}
else
{
- echo "{$execution->name}";
+ echo "{$executionName}";
}
?>