Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
integration
prechecker
Commits
fc07f6ad
Commit
fc07f6ad
authored
Nov 28, 2017
by
Luca Bösch
Browse files
MDL-32350 admin: Sort users by country ASC and DESC
parent
5f54a876
Changes
1
Hide whitespace changes
Inline
Side-by-side
admin/user.php
View file @
fc07f6ad
...
...
@@ -256,11 +256,17 @@
$users
[
$key
]
->
country
=
$countries
[
$user
->
country
];
}
}
if
(
$sort
==
"country"
)
{
// Need to resort by full country name, not code
if
(
$sort
==
"country"
)
{
// Need to resort by full country name, not code.
foreach
(
$users
as
$user
)
{
$susers
[
$user
->
id
]
=
$user
->
country
;
}
asort
(
$susers
);
// Sort by country name, according to $dir.
if
(
$dir
===
'DESC'
)
{
arsort
(
$susers
);
}
else
{
asort
(
$susers
);
}
foreach
(
$susers
as
$key
=>
$value
)
{
$nusers
[]
=
$users
[
$key
];
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment