diff --git a/module/programplan/view/create.html.php b/module/programplan/view/create.html.php index 521bfa5d6c..5d2b06a954 100644 --- a/module/programplan/view/create.html.php +++ b/module/programplan/view/create.html.php @@ -30,7 +30,9 @@ $product) { - echo "
  • " . html::a($this->createLink('programplan', 'create', "projectID=$project->id&productID=$key"), $product) . "
  • "; + $class = ''; + $class = $productID == $key ? 'class="active"' : ''; + echo "
  • " . html::a($this->createLink('programplan', 'create', "projectID=$project->id&productID=$key"), $product) . "
  • "; } ?>