From de00f769f6606d914a81bf8437c23bb2791792c2 Mon Sep 17 00:00:00 2001 From: Nate Jones Date: Sat, 21 Jun 2014 00:59:41 +0000 Subject: [PATCH] Modify th_order_by function to allow the passing of CSS to the generated tag. --- resources/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/functions.php b/resources/functions.php index 2cc6d60de6..433cf5ad78 100644 --- a/resources/functions.php +++ b/resources/functions.php @@ -367,9 +367,9 @@ if (!function_exists('th_order_by')) { //html table header order by - function th_order_by($field_name, $columntitle, $order_by, $order, $app_uuid = '') { + function th_order_by($field_name, $columntitle, $order_by, $order, $app_uuid = '', $css = '') { if (strlen($app_uuid) > 0) { $app_uuid = "&app_uuid=".$app_uuid; } // accomodate need to pass app_uuid where necessary (inbound/outbound routes lists) - $html = ""; + $html = ""; if (strlen($order_by)==0) { $html .= "$columntitle"; }