diff options
author | Frug <frugen@gmail.com> | 2014-07-20 18:35:38 -0400 |
---|---|---|
committer | Frug <frugen@gmail.com> | 2014-07-20 18:35:38 -0400 |
commit | 91ca0d5a4702f5f256e3a3036713b341c3860401 (patch) | |
tree | f8dfca37e5e963d22bceb7ed964591cc1ac4970b /chat/lib/class | |
parent | f5b267a63fa556a6623ff1d6a94865ca91f15a84 (diff) | |
parent | 55d947ba66a4e802d5e312528a2a0c68e2d1be57 (diff) | |
download | AJAX-Chat-91ca0d5a4702f5f256e3a3036713b341c3860401.zip AJAX-Chat-91ca0d5a4702f5f256e3a3036713b341c3860401.tar.gz AJAX-Chat-91ca0d5a4702f5f256e3a3036713b341c3860401.tar.bz2 |
Merge branch 'case-insensitive-onlinelist' of https://github.com/marquisite/AJAX-Chat into marquisite-case-insensitive-onlinelist
Conflicts:
chat/lib/class/AJAXChat.php
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 +?> |