Fixed Error in edit invoice where it would sometimes cause a javascript error in invoice listing and prevent the full list from displaying

This commit is contained in:
johnny@pittpc.com 2021-02-10 13:52:00 -05:00
parent 66f9e2b10f
commit 92ab9debdd
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@
$category_id_select= $row['category_id'];
$category_name_select = $row['category_name'];
?>
<option <?php if($category_id == $category_id_select){ ?> selected <?php } ?> value="<?php echo $category_id_select; ?>"><?php echo $category_name_select; ?></option>
<option <?php if($category_id == $category_id_select){ echo "selected"; } ?> value="<?php echo $category_id_select; ?>"><?php echo $category_name_select; ?></option>
<?php
}