This commit is contained in:
liuhong
2022-08-04 02:05:07 +00:00
parent b2f152d904
commit 2bd5412bb1
+2 -2
View File
@@ -31,8 +31,8 @@
$class = '';
foreach($productList as $key => $product)
{
$class = $productID == $key ? 'class="active"' : '';
echo "<li $class>" . html::a($this->createLink('programplan', 'create', "projectID=$project->id&productID=$key"), $product) . "</li>";
$class = $productID == $key ? 'class="active"' : '';
echo "<li $class>" . html::a($this->createLink('programplan', 'create', "projectID=$project->id&productID=$key"), $product) . "</li>";
}
?>
</ul>