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

Modified:
   trunk/mcs/class/System.Web/System.Web/ChangeLog
   trunk/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: trunk/mcs/class/System.Web/System.Web/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web/ChangeLog     2005-03-01 01:03:44 UTC 
(rev 41300)
+++ trunk/mcs/class/System.Web/System.Web/ChangeLog     2005-03-01 01:11:22 UTC 
(rev 41301)
@@ -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: trunk/mcs/class/System.Web/System.Web/HttpRequest.cs
===================================================================
--- trunk/mcs/class/System.Web/System.Web/HttpRequest.cs        2005-03-01 
01:03:44 UTC (rev 41300)
+++ trunk/mcs/class/System.Web/System.Web/HttpRequest.cs        2005-03-01 
01:11:22 UTC (rev 41301)
@@ -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