[Mono-bugs] [Bug 56802][Nor] Changed - [PATCH] HttpRequest.MapPath is stripping trailing "/" on return
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 13 May 2004 21:23:56 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by gonzalo@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=56802
--- shadow/56802 2004-04-28 20:14:10.000000000 -0400
+++ shadow/56802.tmp.32418 2004-05-13 21:23:56.000000000 -0400
@@ -1,13 +1,13 @@
Bug#: 56802
Product: Mono: Class Libraries
Version: unspecified
OS: unknown
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Normal
Component: Sys.Web
AssignedTo: gonzalo@ximian.com
ReportedBy: vladimir@pobox.com
QAContact: mono-bugs@ximian.com
@@ -51,6 +51,9 @@
}
+ if (!virtualPath.EndsWith("/") && hasTrailingSlash)
+ virtualPath += "/";
}
if (!allowCrossAppMapping) {
+
+------- Additional Comments From gonzalo@ximian.com 2004-05-13 21:23 -------
+Fixed in CVS.