Categories: Make category type pretty Capitalize words, replace _ with space

This commit is contained in:
johnnyq
2026-03-30 15:29:13 -04:00
parent d8359e1049
commit 7bed0231d2
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ $category_types_array = ['Expense', 'Income', 'Referral', 'Ticket'];
?>
<div class="modal-header bg-dark">
<h5 class="modal-title"><i class="fa fa-fw fa-list-ul mr-2"></i>New <strong><?= nullable_htmlentities($category) ?></strong> Category</h5>
<h5 class="modal-title"><i class="fa fa-fw fa-list-ul mr-2"></i>New <strong><?= nullable_htmlentities(ucwords(str_replace('_', ' ', $category))); ?></strong> Category</h5>
<button type="button" class="close text-white" data-dismiss="modal">
<span>&times;</span>
</button>