diff --git a/clients.php b/clients.php
index 49cc56d2..18d7df4b 100644
--- a/clients.php
+++ b/clients.php
@@ -251,9 +251,22 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
">
- | Client Name |
- Primary Location |
- Primary Contact |
+
+
+ Client Name
+
+ |
+
+
+ Primary Location
+
+ |
+
+
+ Primary Contact
+
+
+ |
Billing |
Action |
diff --git a/pagination_head.php b/pagination_head.php
index 600b4cb3..b92c013b 100644
--- a/pagination_head.php
+++ b/pagination_head.php
@@ -41,6 +41,15 @@ if (isset($_GET['order'])) {
}
}
+// Set the order Icon
+if ($sort) {
+ if ($order == "ASC") {
+ $order_icon = "";
+ } else {
+ $order_icon = "";
+ }
+}
+
// Search
if (isset($_GET['q'])) {
$q = sanitizeInput($_GET['q']);