update starburst. adjust groupHas to toLower the perm.

This commit is contained in:
Sleaker 2012-01-15 13:26:40 -08:00
parent 471035040d
commit 0adaac8cb6
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -161,7 +161,7 @@ public class Permission_Starburst extends Permission {
return false;
}
Map<String, Boolean> effective = g.aggregatePermissions();
return effective.containsKey(permission) ? effective.get(permission) : false;
return effective.containsKey(permission.toLowerCase()) ? effective.get(permission.toLowerCase()) : false;
}
@Override