diff options
Diffstat (limited to 'rt/share/html/Elements/ShowMemberships')
-rw-r--r-- | rt/share/html/Elements/ShowMemberships | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rt/share/html/Elements/ShowMemberships b/rt/share/html/Elements/ShowMemberships index f8c20cd20..7633d68fd 100644 --- a/rt/share/html/Elements/ShowMemberships +++ b/rt/share/html/Elements/ShowMemberships @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC %# <sales@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -52,7 +52,7 @@ % if ($Group->Domain eq 'UserDefined') { <li><a href="<%RT->Config->Get('WebPath')%>/Admin/Groups/Modify.html?id=<% $Group->Id %>"><% $Group->Name %></a></li> % } elsif ($Group->Domain eq 'SystemInternal') { -<li><em><% loc($Group->Type) %></em></li> +<li><em><% loc($Group->Name) %></em></li> % } % } </ul> @@ -71,12 +71,14 @@ $GroupMembers->Limit( FIELD => 'Domain', OPERATOR => '=', VALUE => 'SystemInternal', + CASESENSITIVE => 0, ); $GroupMembers->Limit( ALIAS => $alias, FIELD => 'Domain', OPERATOR => '=', VALUE => 'UserDefined', + CASESENSITIVE => 0, ); $GroupMembers->OrderByCols( { ALIAS => $alias, FIELD => 'Domain' }, |