mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Fixed undefined sort var by using php isset function in the filter header, added sort order icons to tickets
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user