Skip to content
Snippets Groups Projects
Commit 4f7ce124 authored by brinn's avatar brinn
Browse files

Fix bug BSSE#1017326 reported by Arno. Now a PlateIdentifier with a permId set...

Fix bug BSSE#1017326 reported by Arno. Now a PlateIdentifier with a permId set authenticates without having a data space set.

SVN: 24214
parent 4ee1abcc
No related branches found
No related tags found
No related merge requests found
...@@ -70,17 +70,18 @@ public class ScreeningPlateListReadOnlyPredicate extends ...@@ -70,17 +70,18 @@ public class ScreeningPlateListReadOnlyPredicate extends
{ {
return status; return status;
} }
} } else
final String spaceCode = SpaceCodeHelper.getSpaceCode(person, plate.tryGetSpaceCode());
if (plate.isSharedPlate() == false)
{ {
final Status status = final String spaceCode = SpaceCodeHelper.getSpaceCode(person, plate.tryGetSpaceCode());
evaluate(person, allowedRoles, authorizationDataProvider if (plate.isSharedPlate() == false)
.getHomeDatabaseInstance(), spaceCode);
if (Status.OK.equals(status) == false)
{ {
return status; final Status status =
evaluate(person, allowedRoles, authorizationDataProvider
.getHomeDatabaseInstance(), spaceCode);
if (Status.OK.equals(status) == false)
{
return status;
}
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment