projects
/
platal.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
57a45fc
)
Fixes membres ordering in MLs (Closes #1387).
author
Stéphane Jacob
<sj@m4x.org>
Wed, 9 Feb 2011 10:36:19 +0000
(11:36 +0100)
committer
Stéphane Jacob
<sj@m4x.org>
Wed, 9 Feb 2011 10:36:19 +0000
(11:36 +0100)
Signed-off-by: Stéphane Jacob <sj@m4x.org>
modules/lists/lists.inc.php
patch
|
blob
|
blame
|
history
diff --git
a/modules/lists/lists.inc.php
b/modules/lists/lists.inc.php
index
bba0ff0
..
cfda3c1
100644
(file)
--- a/
modules/lists/lists.inc.php
+++ b/
modules/lists/lists.inc.php
@@
-48,7
+48,7
@@
function list_sort_owners($members, $tri_promo = true)
ksort($membres);
foreach($membres as &$membre) {
-
ksort($membre
);
+
uksort($membre, strcasecmp
);
}
return $membres;
}