mirror of
https://github.com/itflow-org/itflow
synced 2026-04-18 10:35:39 +00:00
Categories: Make category type pretty Capitalize words, replace _ with space
This commit is contained in:
@@ -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>×</span>
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user