* finish the task #822.

This commit is contained in:
shiyangyangwork@yahoo.cn
2012-06-06 08:45:54 +00:00
parent b37b7a16ed
commit ebd55b86b9
4 changed files with 19 additions and 2 deletions
+6 -1
View File
@@ -34,7 +34,12 @@ userList = "<?php echo join(',', array_keys($users));?>".split(',');
<tr>
<th class='rowhead'><?php echo $lang->bug->openedBuild;?></th>
<td>
<span id='buildBox'><?php echo html::select('openedBuild[]', $builds, $buildID, 'size=3 multiple=multiple class=select-3');?></span>
<span id='buildBox'>
<?php
echo html::select('openedBuild[]', $builds, $buildID, 'size=3 multiple=multiple class=select-3');
echo $lang->build->notice2;
?>
</span>
</td>
</tr>
<tr>
+3
View File
@@ -38,3 +38,6 @@ $lang->build->bugs = 'Linked bugs';
$lang->build->finishStories = 'The total demand for a complete %s';
$lang->build->resolvedBugs = 'The total solution of bug%s';
$lang->build->notice = '(No build in your system, create it in build of project right now.)';
$lang->build->notice2 = '(If the build is empty, please create it in build of project right now.)';
+3
View File
@@ -38,3 +38,6 @@ $lang->build->bugs = '已关联Bug';
$lang->build->finishStories = '本次共完成需求%s个';
$lang->build->resolvedBugs = '本次共解决Bug%s个';
$lang->build->notice = '(还没有相应的版本信息哦,马上到[项目视图]-[版本]创建一个吧)';
$lang->build->notice2 = '(如果还没有相应的版本信息,请到[项目视图]-[版本]创建)';
+7 -1
View File
@@ -22,7 +22,13 @@
</tr>
<tr>
<th class='rowhead'><?php echo $lang->release->build;?></th>
<td><?php echo html::select('build', $builds, '', "class='select-3' onchange=loadStoriesAndBugs(this.value,$productID)");?></td>
<td>
<?php
echo html::select('build', $builds, '', "class='select-3' onchange=loadStoriesAndBugs(this.value,$productID)");
unset($builds['']);
if(empty($builds)) echo $lang->build->notice;
?>
</td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->release->date;?></th>