Update client_software_add_modal.php

Tidy
This commit is contained in:
wrongecho
2023-05-20 20:18:15 +01:00
committed by GitHub
parent 6673f27cec
commit e650b7938e

View File

@@ -63,7 +63,7 @@
</div>
<select class="form-control select2" name="type" required>
<option value="">- Type -</option>
<?php foreach($software_types_array as $software_type) { ?>
<?php foreach ($software_types_array as $software_type) { ?>
<option><?php echo $software_type; ?></option>
<?php } ?>
</select>
@@ -78,7 +78,7 @@
</div>
<select class="form-control select2" name="license_type">
<option value="">- Select a License Type -</option>
<?php foreach($license_types_array as $license_type) { ?>
<?php foreach ($license_types_array as $license_type) { ?>
<option><?php echo $license_type; ?></option>
<?php } ?>
</select>