summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2015-10-12 18:36:35 -0400
committerDavid Rothstein <drothstein@gmail.com>2015-10-12 18:36:35 -0400
commit186368f1c98ef0bba70473aabf135026c7e722de (patch)
tree94bddceb9850a5f149b3b8928f4690218189a574
parentc2d06db1234580248b9b6475113f3ee1cc0b08ab (diff)
downloadbrdo-186368f1c98ef0bba70473aabf135026c7e722de.tar.gz
brdo-186368f1c98ef0bba70473aabf135026c7e722de.tar.bz2
Issue #2500717 by afi13, cilefen, evilfurryone: Sort entries in the site status report page alphabetically, BUT case-insensitively
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index d0dda18dc..39de758ed 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -2815,7 +2815,7 @@ function system_settings_form_submit($form, &$form_state) {
function _system_sort_requirements($a, $b) {
if (!isset($a['weight'])) {
if (!isset($b['weight'])) {
- return strcmp($a['title'], $b['title']);
+ return strcasecmp($a['title'], $b['title']);
}
return -$b['weight'];
}