* fix bug #1013.
This commit is contained in:
@@ -28,6 +28,7 @@
|
||||
<tbody>
|
||||
<?php foreach($allBugs as $bug):?>
|
||||
<?php if(strpos(",{$build->bugs},", ",$bug->id,") !== false) continue;?>
|
||||
<?php if($build->product != $bug->product) continue; ?>
|
||||
<tr>
|
||||
<td class='cell-id'>
|
||||
<input type='checkbox' name='bugs[<?php echo $bug->id?>]' value='<?php echo $bug->id;?>' <?php if($bug->status == 'resolved' or $bug->status == 'closed') echo "checked";?> />
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
<tbody>
|
||||
<?php foreach($allStories as $story):?>
|
||||
<?php if(strpos(",{$build->stories},", ",{$story->id},") !== false) continue; ?>
|
||||
<?php if($build->product != $story->product) continue; ?>
|
||||
<tr>
|
||||
<td class='cell-id'>
|
||||
<input type='checkbox' name='stories[]' value='<?php echo $story->id;?>' <?php if($story->stage == 'developed' or $story->status == 'closed') echo 'checked';?> />
|
||||
|
||||
Reference in New Issue
Block a user