Author: ashish
Date: Sat Sep 11 11:21:42 2010
New Revision: 996122
URL:
http://svn.apache.org/viewvc?rev=996122&view=revLog:
For now reverting my commit r995384 as it was creating issues for others.
Very soon I will get back here with better fix, till then I will maintain patch for my own work.
Modified:
ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java
Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java?rev=996122&r1=996121&r2=996122&view=diff==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java Sat Sep 11 11:21:42 2010
@@ -803,7 +803,7 @@ public class UtilXml {
if (node != null) {
do {
if (node.getNodeType() == Node.ELEMENT_NODE && (childElementName == null ||
- childElementName.equals(node.getNodeName()))) {
+ childElementName.equals(node.getLocalName()))) {
Element childElement = (Element) node;
return childElement;
}