Sort roles in security tab

This is a forum to suggest new features for mojoPortal. 

This thread is closed to new posts. You must sign in to post in the forums.
8/26/2008 12:27:06 PM
Gravatar
Total Posts 45

Sort roles in security tab

It wasn't a big deal when there weren't too many roles defined in the system, but we now have enough that finding the correct role to check/uncheck on the security tab is becoming cumbersome.

8/26/2008 12:39:56 PM
Gravatar
Total Posts 18439

Re: Sort roles in security tab

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

You must sign in to post in the forums. This thread is closed to new posts.