You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by as...@apache.org on 2010/09/11 13:21:43 UTC

svn commit: r996122 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java

Author: ashish
Date: Sat Sep 11 11:21:42 2010
New Revision: 996122

URL: http://svn.apache.org/viewvc?rev=996122&view=rev
Log:
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;
                 }