From aa27c7486bfa90a9609fef32c6fee550275c0da6 Mon Sep 17 00:00:00 2001 From: wangyuting Date: Mon, 22 Jan 2024 15:23:02 +0800 Subject: [PATCH] * Fix link url error. bug #44622. --- module/block/ui/bugstatisticblock.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/block/ui/bugstatisticblock.html.php b/module/block/ui/bugstatisticblock.html.php index 5455c1f1da..09e28ddf1e 100644 --- a/module/block/ui/bugstatisticblock.html.php +++ b/module/block/ui/bugstatisticblock.html.php @@ -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}¶ms={$params}") ); if($productItem->id == $active) $product = $productItem;