From 5f5a0a4b6aa91cb3ec7e5d624c3b79136f22444d Mon Sep 17 00:00:00 2001 From: wangchunsheng Date: Thu, 17 Dec 2009 06:42:24 +0000 Subject: [PATCH] + add id to the link. --- trunk/module/tree/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/module/tree/model.php b/trunk/module/tree/model.php index 8c22a4cde8..7d2c89b7e4 100644 --- a/trunk/module/tree/model.php +++ b/trunk/module/tree/model.php @@ -137,7 +137,7 @@ class treeModel extends model /* 生成需求链接。*/ function createStoryLink($module) { - $linkHtml = html::a(helper::createLink('product', 'browse', "product={$module->product}&module={$module->id}"), $module->name); + $linkHtml = html::a(helper::createLink('product', 'browse', "product={$module->product}&module={$module->id}"), $module->name, '_self', "id='module{$module->id}'"); return $linkHtml; }