Author: mhabersack
Date: 2007-10-03 20:04:45 -0400 (Wed, 03 Oct 2007)
New Revision: 86841

Modified:
   trunk/mcs/class/System.Web/System.Web/ChangeLog
   trunk/mcs/class/System.Web/System.Web/HttpApplication.cs
Log:
2007-10-04  Marek Habersack  <[EMAIL PROTECTED]>

        * HttpApplication.cs: call the Init method after loading the
        modules and hooking up application events. Fixes bug #330416.


Modified: trunk/mcs/class/System.Web/System.Web/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web/ChangeLog     2007-10-03 23:51:26 UTC 
(rev 86840)
+++ trunk/mcs/class/System.Web/System.Web/ChangeLog     2007-10-04 00:04:45 UTC 
(rev 86841)
@@ -1,3 +1,8 @@
+2007-10-04  Marek Habersack  <[EMAIL PROTECTED]>
+
+       * HttpApplication.cs: call the Init method after loading the
+       modules and hooking up application events. Fixes bug #330416.
+
 2007-10-01  Marek Habersack  <[EMAIL PROTECTED]>
 
        * HttpServerUtility.cs: set a flag when transferring control to

Modified: trunk/mcs/class/System.Web/System.Web/HttpApplication.cs
===================================================================
--- trunk/mcs/class/System.Web/System.Web/HttpApplication.cs    2007-10-03 
23:51:26 UTC (rev 86840)
+++ trunk/mcs/class/System.Web/System.Web/HttpApplication.cs    2007-10-04 
00:04:45 UTC (rev 86841)
@@ -183,8 +183,10 @@
 
                                modcoll = modules.LoadModules (this);
 
-                               if (full_init)
+                               if (full_init) {
                                        HttpApplicationFactory.AttachEvents 
(this);
+                                       Init ();
+                               }
 
 #if NET_2_0
                                GlobalizationSection cfg;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to