Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
9c66f4f4
Commit
9c66f4f4
authored
21 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#6774
by jhriggs: fixed tablesort sort order reversal errors.
parent
637898ec
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
includes/tablesort.inc
+2
-1
2 additions, 1 deletion
includes/tablesort.inc
with
2 additions
and
1 deletion
includes/tablesort.inc
+
2
−
1
View file @
9c66f4f4
...
@@ -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
=
' <img src="'
.
theme
(
'image'
,
'arrow-'
.
$ts
[
'sort'
]
.
'.gif'
)
.
'" alt="'
.
t
(
'sort icon'
)
.
'" />'
;
$image
=
' <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'
)
?
'
a
sc'
:
'
de
sc'
;
return
(
$_GET
[
'sort'
]
==
'desc'
)
?
'
de
sc'
:
'
a
sc'
;
}
}
// 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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment