dbertoni 2002/09/12 09:48:46
Modified: c/src/XSLT Stylesheet.cpp
Log:
Fixed bug with forward-compatible processing.
Revision Changes Path
1.79 +2 -2 xml-xalan/c/src/XSLT/Stylesheet.cpp
Index: Stylesheet.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/Stylesheet.cpp,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- Stylesheet.cpp 5 Sep 2002 01:38:21 -0000 1.78
+++ Stylesheet.cpp 12 Sep 2002 16:48:46 -0000 1.79
@@ -521,9 +521,9 @@
attrOK = ns != 0 && !::isEmpty(*ns) && !equals(*ns,
constructionContext.getXSLTNamespaceURI());
}
- else
+ else if (m_XSLTVerDeclared >
constructionContext.getXSLTVersionSupported())
{
- attrOK = false;
+ attrOK = true;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]