2008-06-21 Robert Jordan <robertj@gmx.net>
authorRobert Jordan <robertj@gmx.net>
Sun, 22 Jun 2008 17:31:40 +0000 (17:31 -0000)
committerRobert Jordan <robertj@gmx.net>
Sun, 22 Jun 2008 17:31:40 +0000 (17:31 -0000)
* HttpRuntime.cs (.cctor): Workaround for bug #402263.

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

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

index 501d56d80c61962bbeb1c025eda12ea217bfaab0..db71ff3fdaa1927bfbf9d48ab13450f98ea76871 100644 (file)
@@ -1,3 +1,7 @@
+2008-06-21  Robert Jordan  <robertj@gmx.net>
+
+       * HttpRuntime.cs (.cctor): Workaround for bug #402263.
+
 2008-06-19  Marek Habersack  <mhabersack@novell.com>
 
        * MimeTypes.cs: added a mime type entry for .xpi files.
index b8d96e64c782134fca27b3766a274bcabdeba1d5..ac388356484700740cb0dcc978a1fb1c0b1fe2e5 100644 (file)
@@ -139,7 +139,7 @@ namespace System.Web {
 
                        if (runningOnWindows){
                                caseInsensitive = true;
-                               isunc = new Uri ("file://" + AppDomainAppPath).IsUnc;
+                               isunc = new Uri (AppDomainAppPath).IsUnc;
                        } else {
                                string mono_iomap = Environment.GetEnvironmentVariable ("MONO_IOMAP");
                                if (mono_iomap != null) {