* Fix link url error. bug #44622.

This commit is contained in:
wangyuting
2024-01-22 15:23:02 +08:00
parent bef81f8e27
commit aa27c7486b
+1 -1
View File
@@ -23,7 +23,7 @@ foreach($products as $productItem)
(
'id' => $productItem->id,
'text' => $productItem->name,
'url' => createLink('product', 'browse', "productID={$productItem->id}"),
'url' => createLink('bug', 'browse', "productID={$productItem->id}"),
'activeUrl' => createLink('block', 'printBlock', "blockID={$block->id}&params={$params}")
);
if($productItem->id == $active) $product = $productItem;