From 0dd7c9a428c5de2d3a1cc86b3060e7d2a3593d28 Mon Sep 17 00:00:00 2001 From: wangchunsheng Date: Mon, 31 Oct 2011 01:47:07 +0000 Subject: [PATCH] * remove the [bug] when create case from bug. --- module/testcase/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/testcase/control.php b/module/testcase/control.php index a71ca59c8b..ae52e4146a 100644 --- a/module/testcase/control.php +++ b/module/testcase/control.php @@ -215,7 +215,7 @@ class testcase extends control $type = $bug->type; $pri = $bug->pri ? $bug->pri : $bug->severity; $storyID = $bug->story; - $title = "[Bug#$bugID]" . $bug->title; + $title = $bug->title; $keywords = $bug->keywords; $steps = $this->testcase->createStepsFromBug($bug->steps); }