diff options
author | Frug <frugen@gmail.com> | 2014-07-20 18:36:28 -0400 |
---|---|---|
committer | Frug <frugen@gmail.com> | 2014-07-20 18:36:28 -0400 |
commit | d16eabdd27b0bd26564ec54f1c53d1ba2250373e (patch) | |
tree | f8dfca37e5e963d22bceb7ed964591cc1ac4970b /chat/lib/class | |
parent | f5b267a63fa556a6623ff1d6a94865ca91f15a84 (diff) | |
parent | 91ca0d5a4702f5f256e3a3036713b341c3860401 (diff) | |
download | AJAX-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.php | 4 |
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 +?> |