From 80ac457213938e2375375f795177d04033ad9efb Mon Sep 17 00:00:00 2001 From: wangchunsheng Date: Wed, 10 Feb 2010 01:13:43 +0000 Subject: [PATCH] * when link story, link only active story. --- module/project/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/project/control.php b/module/project/control.php index 7b4d1e39b5..54f5acf3a2 100644 --- a/module/project/control.php +++ b/module/project/control.php @@ -488,7 +488,7 @@ class project extends control $position[] = html::a($browseLink, $project->name); $position[] = $this->lang->project->linkStory; - $allStories = $this->story->getProductStories(array_keys($products), $moduleID = '0', $status = 'wait, doing'); + $allStories = $this->story->getProductStories(array_keys($products), $moduleID = '0', $status = 'active'); $prjStories = $this->story->getProjectStoryPairs($projectID); $this->assign('header', $header);