* Fix bug#29716.

This commit is contained in:
xieqiyu
2022-11-17 09:05:40 +08:00
parent eb7a0f44db
commit 0de7525880
@@ -26,13 +26,18 @@
<th><?php echo $lang->release->name;?></th>
<td><?php echo html::input('name', '', "class='form-control' required");?></td>
<td>
<?php if(!$product->shadow):?>
<div id='markerBox' class='checkbox-primary'>
<input id='marker' name='marker' value='1' type='checkbox' />
<label for='marker'><?php echo $lang->release->marker;?></label>
</div>
<?php endif;?>
<?php if($lastRelease) echo '(' . $lang->release->last . ': ' . $lastRelease->name . ')';?>
</td>
</tr>
<?php if($product->shadow):?>
<?php echo html::hidden('product', $product->id);?>
<?php else:?>
<tr>
<th><?php echo $lang->release->product;?></th>
<td>
@@ -43,6 +48,7 @@
</td>
<td></td>
</tr>
<?php endif;?>
<tr>
<th><?php echo $lang->release->build;?></th>
<td id='buildBox'><?php echo html::select('build[]', $builds, '', "class='form-control chosen' multiple");?></td>