Fix Billable sort

This commit is contained in:
johnnyq 2025-12-18 20:39:47 -05:00
parent a82e2c7ea1
commit cab81ca170
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
<?php if ($config_module_enable_accounting && lookupUserPermission("module_sales") >= 2) { ?>
<th class="text-center">
<a class="text-secondary" href="?<?= $url_query_strings_sort ?>&sort=ticket_billable&order=<?= $disp ?>">
Billable <?php if ($sort == 'recurring_ticket_billable') { echo $order_icon; } ?>
Billable <?php if ($sort == 'ticket_billable') { echo $order_icon; } ?>
</a>
</th>
<?php } ?>