Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-08-26 23:57:28 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-08-26 23:57:28 +0400
commitfb235e91a6af1d03f2e185d29f9933c6b7bc7527 (patch)
tree0147b49dd7b67a7e74b1ada97d1eb28a77c65358
parent8afd58d894267f1ec5687a44b5b28a0bf7084e1d (diff)
2003-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we need to pass true here. Fixes bug #47918. svn path=/trunk/mcs/; revision=17635
-rw-r--r--mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog5
-rw-r--r--mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog b/mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog
index 337eecf9941..3c9c23f4aff 100644
--- a/mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog
+++ b/mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog
@@ -1,3 +1,8 @@
+2003-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+ * HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we
+ need to pass true here. Fixes bug #47918.
+
2003-07-17 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* HtmlContainerControl.cs: Added attributes
diff --git a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs
index bd5c1432efb..ca8940adb1d 100644
--- a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs
+++ b/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")