Hi,
Good point. I had not even noticed this because I only have a few roles. I will fix this in svn trunk today. If you are using MS SQL, you can fix this right now by running this on your db:
ALTER PROCEDURE [dbo].[mp_Roles_Select]
/*
Last Modified: 2008-08-26 Joe Audette
*/
@SiteID int
AS
SELECT *
FROM mp_Roles
WHERE SiteID = @SiteID
ORDER BY DisplayName
Best,
Joe