diff options
Diffstat (limited to 'includes/tablesort.inc')
-rw-r--r-- | includes/tablesort.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/tablesort.inc b/includes/tablesort.inc index e80eb544f..56d805e1b 100644 --- a/includes/tablesort.inc +++ b/includes/tablesort.inc @@ -77,8 +77,8 @@ function tablesort_header($cell, $header, $ts) { if ($cell['data'] == $ts['name']) { $ts['sort'] = (($ts['sort'] == 'asc') ? 'desc' : 'asc'); $cell['class'] = 'active'; - $image = ' <img src="' . theme('image', 'arrow-' . $ts['sort'] . '.png') . '" alt="'. t('sort icon') .'" />'; $title = ($ts['sort'] == 'asc' ? t('sort ascending') : t('sort descending')); + $image = ' '. theme('image', 'misc/arrow-'. $ts['sort'] .'.png', t('sort icon'), $title); } else { // If the user clicks a different header, we want to sort ascending initially. |