Переглянути джерело

2003-05-11 Gonzalo Paniagua Javier <[email protected]>

	* XslTransform.cs: fixed bug #42739.

svn path=/trunk/mcs/; revision=14491
Gonzalo Paniagua Javier 22 роки тому
батько
коміт
e1dee28d8a

+ 4 - 0
mcs/class/System.XML/System.Xml.Xsl/ChangeLog

@@ -1,3 +1,7 @@
+2003-05-11  Gonzalo Paniagua Javier <[email protected]>
+
+	* XslTransform.cs: fixed bug #42739.
+
 2003-05-11  Gonzalo Paniagua Javier <[email protected]>
 
 	* XslTransform.cs: fixed bug #42747.

+ 1 - 1
mcs/class/System.XML/System.Xml.Xsl/XslTransform.cs

@@ -461,7 +461,7 @@ namespace System.Xml.Xsl
 				writer.WriteStartDocument ();
 				break;
 			case XPathNodeType.Attribute:
-				writer.WriteAttributeString (navigator.LocalName, navigator.Value);
+				writer.WriteAttributeString (navigator.Name, navigator.Value);
 				break;
 
 			case XPathNodeType.Comment: