Updated Accounts Listing to use take adavantage of the new account_type_parent

This commit is contained in:
johnnyq
2023-10-20 16:10:45 -04:00
parent 762dafab7e
commit 8257fc3193
3 changed files with 22 additions and 23 deletions

View File

@@ -33,8 +33,11 @@
while ($row = mysqli_fetch_array($sql_account_types)) {
$account_type_id = intval($row['account_type_id']);
$account_type_name = nullable_htmlentities($row['account_type_name']);
if($account_type_id % 10 != 0) {
echo "<option value='$account_type_id'>$account_type_name</option>";}}?>
echo "<option value='$account_type_id'>$account_type_name</option>";
}
?>
</select>
</div>
</div>