2008-05-12 Noam Lampert <noaml@mainsoft.com>
authorNoam Lampert <noaml@mono-cvs.ximian.com>
Mon, 12 May 2008 12:45:51 +0000 (12:45 -0000)
committerNoam Lampert <noaml@mono-cvs.ximian.com>
Mon, 12 May 2008 12:45:51 +0000 (12:45 -0000)
        * HttpApplication.cs: Fix regressions introduced by latest commit

svn path=/trunk/mcs/; revision=102997

mcs/class/System.Web/System.Web/ChangeLog
mcs/class/System.Web/System.Web/HttpApplication.cs

index b566f774d64b841545d8f9281bafd899f2061b24..031c395a8a229bd5c4b21de6ae7069a186709fdb 100644 (file)
@@ -1,3 +1,7 @@
+2008-05-12 Noam Lampert <noaml@mainsoft.com>
+
+        * HttpApplication.cs: Fix regressions introduced by latest commit
+
 2008-05-07 Gonzalo Panigua Javier <gonzalo.mono@gmail.com>
 
        * HttpApplication.cs: create a fake context while loading the
index 83118d78977d310d253c2511bde31cae31cda014..dd2089bed7b7951672507db68b674e72550aa239 100644 (file)
@@ -190,7 +190,7 @@ namespace System.Web {
 #endif
 
                                HttpContext saved = HttpContext.Current;
-                               HttpContext.Current = new HttpContext (new System.Web.Hosting.SimpleWorkerRequest ("/", "", new StringWriter()));
+                               HttpContext.Current = new HttpContext (new System.Web.Hosting.SimpleWorkerRequest ("", "", new StringWriter()));
                                modcoll = modules.LoadModules (this);
                                HttpContext.Current = saved;