Browse Source

2003-08-26 Gonzalo Paniagua Javier <[email protected]>

	* HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we
	need to pass true here. Fixes bug #47918.

svn path=/trunk/mcs/; revision=17635
Gonzalo Paniagua Javier 22 years ago
parent
commit
fb235e91a6

+ 5 - 0
mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog

@@ -1,3 +1,8 @@
+2003-08-26  Gonzalo Paniagua Javier <[email protected]>
+
+	* HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we
+	need to pass true here. Fixes bug #47918.
+
 2003-07-17  Andreas Nahr <[email protected]>
 
 	* HtmlContainerControl.cs: Added attributes

+ 1 - 1
mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs

@@ -16,7 +16,7 @@ using System.Web.UI;
 
 namespace System.Web.UI.HtmlControls{
 	
-	[ConstructorNeedsTag]
+	[ConstructorNeedsTag(true)]
 	public class HtmlGenericControl : HtmlContainerControl {
 		public HtmlGenericControl() :
 			this ("span")