Update client_software_add_from_template_modal.php

Tidy
This commit is contained in:
wrongecho
2023-05-20 20:16:30 +01:00
committed by GitHub
parent 54911769c6
commit 6673f27cec

View File

@@ -21,7 +21,7 @@
<option value="">- Select Template -</option>
<?php
$sql_software_templates = mysqli_query($mysqli, "SELECT * FROM software WHERE software_template = 1 AND software_archived_at IS NULL ORDER BY software_name ASC");
while($row = mysqli_fetch_array($sql_software_templates)){
while ($row = mysqli_fetch_array($sql_software_templates)) {
$software_template_id = intval($row['software_id']);
$software_template_name = nullable_htmlentities($row['software_name']);