Skip to content

Commit

Permalink
fixing problem with changing password (GUI)
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed Oct 10, 2014
1 parent ec5b05b commit 9752ed9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -423,7 +423,7 @@ private List<ContainerWrapper> createContainerWrapper(PrismContainer parent, Ite
ItemPath newPath = createPropertyPath(parentPath, containerDef.getName());
PrismContainer prismContainer = parent.findContainer(def.getName());
ContainerWrapper container;
if (prismContainer != null) {
if (prismContainer != null && !prismContainer.getElementName().equals(CredentialsType.F_PASSWORD)) {
container = new ContainerWrapper(this, prismContainer, ContainerStatus.MODIFYING, newPath, pageBase);
} else {
prismContainer = containerDef.instantiate();
Expand Down

0 comments on commit 9752ed9

Please sign in to comment.