You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2002/09/12 18:48:46 UTC

cvs commit: xml-xalan/c/src/XSLT Stylesheet.cpp

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: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org