From 62bcb3a9eedd2830e7630c6b44348f0e7cc2b162 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 10 Feb 2004 19:46:16 +0000 Subject: [PATCH] - Patch #5744 by JonBob: tablesort does not call theme("image") correctly. --- includes/tablesort.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/tablesort.inc b/includes/tablesort.inc index a15bcdfe485..352b68c35ac 100644 --- a/includes/tablesort.inc +++ b/includes/tablesort.inc @@ -32,7 +32,7 @@ function tablesort($cell, $header) { // special formatting for the currently sorted column header if ($cell['data'] == $ts['order']) { $cell['class'] = 'cell-highlight'; - $image = ' '. t('sort icon') .''; + $image = ' '. t('sort icon') .''; $title = ($ts['sort'] == 'asc' ? t("sort ascending") : t("sort descending")); } else { // If the user clicks a different header, we want to sort ascending initially.