Fixed undefined sort var by using php isset function in the filter header, added sort order icons to tickets

This commit is contained in:
johnnyq
2024-09-20 14:35:26 -04:00
parent e714b80af2
commit 847870a45a
2 changed files with 40 additions and 12 deletions

View File

@@ -42,7 +42,7 @@ if (isset($_GET['order'])) {
}
// Set the order Icon
if ($sort) {
if (isset($sort)) {
if ($order == "ASC") {
$order_icon = "<i class='fas fa-fw fa-sort-up'></i>";
} else {