Commit a01c8060 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Fix user ordering (JM-619).

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3661 b35dd754-fafc-0310-a699-88a17e54d16e
parent 56ffc73f
......@@ -39,7 +39,7 @@ public class DefaultUserProvider implements UserProvider {
private static final String USER_COUNT =
"SELECT count(*) FROM jiveUser";
private static final String ALL_USERS =
"SELECT username FROM jiveUser";
"SELECT username FROM jiveUser ORDER BY username";
private static final String INSERT_USER =
"INSERT INTO jiveUser (username,password,encryptedPassword,name,email,creationDate,modificationDate) " +
"VALUES (?,?,?,?,?,?,?)";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment