Author: gonzalo
Date: 2005-02-28 20:11:47 -0500 (Mon, 28 Feb 2005)
New Revision: 41302

Modified:
   branches/mono-1-0/mcs/class/System.Web/System.Web/ChangeLog
   branches/mono-1-0/mcs/class/System.Web/System.Web/HttpRequest.cs
Log:
2005-02-28 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>

        * HttpRequest.cs: Path and FilePath also change when RewritePath is
        called. Fixes bug #73055.



Modified: branches/mono-1-0/mcs/class/System.Web/System.Web/ChangeLog
===================================================================
--- branches/mono-1-0/mcs/class/System.Web/System.Web/ChangeLog 2005-03-01 
01:11:22 UTC (rev 41301)
+++ branches/mono-1-0/mcs/class/System.Web/System.Web/ChangeLog 2005-03-01 
01:11:47 UTC (rev 41302)
@@ -1,3 +1,8 @@
+2005-02-28 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
+
+       * HttpRequest.cs: Path and FilePath also change when RewritePath is
+       called. Fixes bug #73055.
+
 2005-02-23  Sebastien Pouliot  <[EMAIL PROTECTED]>
 
        * HttpRequest.cs: Make sure that any access after a ValidateInput 

Modified: branches/mono-1-0/mcs/class/System.Web/System.Web/HttpRequest.cs
===================================================================
--- branches/mono-1-0/mcs/class/System.Web/System.Web/HttpRequest.cs    
2005-03-01 01:11:22 UTC (rev 41301)
+++ branches/mono-1-0/mcs/class/System.Web/System.Web/HttpRequest.cs    
2005-03-01 01:11:47 UTC (rev 41302)
@@ -1155,6 +1155,8 @@
                internal void SetCurrentExePath (string filePath)
                {
                        currentExePath = filePath;
+                       _sPath = filePath;
+                       _sFilePath = filePath;
                        _sRequestRootVirtualDir = null;
                        baseVirtualDir = null;
                        _sPathTranslated = null;

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

Reply via email to