* Fix bug #22639.* Fix bug #22639.* Fix bug #22639.* Fix bug #22639.* Fix bug #22639.* Fix bug #22639.* Fix bug #22639.* Fix bug #22639.

This commit is contained in:
mayue
2022-05-19 07:39:46 +00:00
parent 0e0aed22f1
commit 66c6bf6bc5
+1 -3
View File
@@ -39,12 +39,10 @@
<th><?php echo $lang->productplan->title;?></th>
<td><?php echo html::input('title', $plan->title, "class='form-control' required");?></td><td></td><td></td>
</tr>
<?php if($plan->parent != '-1'):?>
<tr>
<tr <?php echo $plan->parent == '-1' ? class='hidden': '';?>>
<th><?php echo $lang->productplan->parent;?></th>
<td><?php echo html::select('parent', array('0' => '') + $parentPlanPairs, $plan->parent, "class='form-control chosen'");?>
</tr>
<?php endif;?>
<tr>
<th><?php echo $lang->productplan->status;?></th>
<?php $disabled = $plan->parent == -1 ? "disabled='disabled'" : '' ;?>