summaryrefslogtreecommitdiffstats
path: root/chat/lib/class
diff options
context:
space:
mode:
authorFrug <frugen@gmail.com>2014-07-20 18:36:28 -0400
committerFrug <frugen@gmail.com>2014-07-20 18:36:28 -0400
commitd16eabdd27b0bd26564ec54f1c53d1ba2250373e (patch)
treef8dfca37e5e963d22bceb7ed964591cc1ac4970b /chat/lib/class
parentf5b267a63fa556a6623ff1d6a94865ca91f15a84 (diff)
parent91ca0d5a4702f5f256e3a3036713b341c3860401 (diff)
downloadAJAX-Chat-d16eabdd27b0bd26564ec54f1c53d1ba2250373e.zip
AJAX-Chat-d16eabdd27b0bd26564ec54f1c53d1ba2250373e.tar.gz
AJAX-Chat-d16eabdd27b0bd26564ec54f1c53d1ba2250373e.tar.bz2
Merge branch 'marquisite-case-insensitive-onlinelist'
Diffstat (limited to 'chat/lib/class')
-rw-r--r--chat/lib/class/AJAXChat.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/chat/lib/class/AJAXChat.php b/chat/lib/class/AJAXChat.php
index c42f2c2..ad53522 100644
--- a/chat/lib/class/AJAXChat.php
+++ b/chat/lib/class/AJAXChat.php
@@ -2389,7 +2389,7 @@ class AJAXChat {
FROM
'.$this->getDataBaseTable('online').'
ORDER BY
- userName;';
+ LOWER(userName);';
// Create a new SQL query:
$result = $this->db->sqlQuery($sql);
@@ -3323,4 +3323,4 @@ class AJAXChat {
}
}
-?> \ No newline at end of file
+?>