Issue #1695 Minor fix to update objects in LifecycleManager

Change-Id: I56fbc283f560d38aa5392845060050ee7264e2da

Former-commit-id: fdd6e67a48 [formerly 6356110226 [formerly de0c63581e75c16445d8fd87aca5be594f7732aa]]
Former-commit-id: 6356110226
Former-commit-id: e19817e9e1
This commit is contained in:
Benjamin Phillippe 2013-09-17 10:52:45 -05:00
parent 718c3f2cd5
commit fc836ea9ef

View file

@ -152,7 +152,7 @@ public class RegistryXPathProcessor {
Node currentNode = nodeList.item(i);
checkForProhibitedUpdates(currentNode);
Node newNode = toDom(addNode).getDocumentElement();
Node importedNode = domDocument.importNode(newNode, false);
Node importedNode = domDocument.importNode(newNode, true);
currentNode.appendChild(importedNode);
}
// Converts the updated object back from DOM