* Resolve issue #756.

This commit is contained in:
tianshujie
2023-02-22 15:15:34 +08:00
parent 91f1b64c2c
commit af76befb02
21 changed files with 32 additions and 32 deletions
+1 -1
View File
@@ -50,7 +50,7 @@
<th class='w-120px'><?php echo $lang->execution->name;?></th>
<td><?php echo html::input('name', $execution->name, "class='form-control' required");?></td><td></td>
</tr>
<?php if(!isset($config->setCode) or $config->setCode == 1):?>
<?php if(isset($config->setCode) and $config->setCode == 1):?>
<tr>
<th><?php echo $lang->execution->code;?></th>
<td><?php echo html::input('code', $execution->code, "class='form-control' required");?></td>