* fix the error of link case.

* change the executeType field to howRun.
This commit is contained in:
wangchunsheng
2010-03-29 02:06:03 +00:00
parent 2dce381822
commit e747b26654
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ $lang->testcase->version = '用例版本';
$lang->testcase->result = '测试结果';
$lang->testcase->real = '实际情况';
$lang->testcase->keywords = '关键词';
$lang->testcase->executeType = '执行方式';
$lang->testcase->howRun = '执行方式';
$lang->testcase->scriptedBy = '由谁编写';
$lang->testcase->scriptedDate = '编写日期';
$lang->testcase->scriptedStatus = '脚本状态';
+1 -1
View File
@@ -145,7 +145,7 @@
{
foreach($case->linkCaseTitles as $linkCaseID => $linkCaseTitle)
{
echo html::a($this->createLink('case', 'view', "caseID=$linkCaseID"), "#$linkCaseID $linkCaseTitle", '_blank') . '<br />';
echo html::a($this->createLink('testcase', 'view', "caseID=$linkCaseID"), "#$linkCaseID $linkCaseTitle", '_blank') . '<br />';
}
}
?>