mirror of https://github.com/itflow-org/itflow
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:
parent
66f9e2b10f
commit
92ab9debdd
|
|
@ -47,7 +47,7 @@
|
||||||
$category_id_select= $row['category_id'];
|
$category_id_select= $row['category_id'];
|
||||||
$category_name_select = $row['category_name'];
|
$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
|
<?php
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue