Skip to content
Snippets Groups Projects
Commit 9c66f4f4 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #6774 by jhriggs: fixed tablesort sort order reversal errors.

parent 637898ec
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -31,6 +31,7 @@ function tablesort($cell, $header) { ...@@ -31,6 +31,7 @@ function tablesort($cell, $header) {
// special formatting for the currently sorted column header // special formatting for the currently sorted column header
if ($cell['data'] == $ts['order']) { if ($cell['data'] == $ts['order']) {
$ts['sort'] = (($ts['sort'] == 'asc') ? 'desc' : 'asc');
$cell['class'] = 'cell-highlight'; $cell['class'] = 'cell-highlight';
$image = '&nbsp;<img src="' . theme('image', 'arrow-' . $ts['sort'] . '.gif') . '" alt="'. t('sort icon') .'" />'; $image = '&nbsp;<img src="' . theme('image', 'arrow-' . $ts['sort'] . '.gif') . '" alt="'. t('sort icon') .'" />';
$title = ($ts['sort'] == 'asc' ? t("sort ascending") : t("sort descending")); $title = ($ts['sort'] == 'asc' ? t("sort ascending") : t("sort descending"));
...@@ -89,7 +90,7 @@ function tablesort_get_order_sql($header, $order) { ...@@ -89,7 +90,7 @@ function tablesort_get_order_sql($header, $order) {
function tablesort_get_sort($headers) { function tablesort_get_sort($headers) {
if ($_GET['sort']) { if ($_GET['sort']) {
return ($_GET['sort'] == 'desc') ? 'asc' : 'desc'; return ($_GET['sort'] == 'desc') ? 'desc' : 'asc';
} }
// user has not specified a sort. check module for default and if none, use 'asc' // user has not specified a sort. check module for default and if none, use 'asc'
else { else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment