From: Robert Jordan Date: Sun, 22 Jun 2008 17:31:40 +0000 (-0000) Subject: 2008-06-21 Robert Jordan X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=43e0be76e471dfd7e3ca7e1a7ad41b2cdb405ebc;p=mono.git 2008-06-21 Robert Jordan * HttpRuntime.cs (.cctor): Workaround for bug #402263. svn path=/trunk/mcs/; revision=106378 --- diff --git a/mcs/class/System.Web/System.Web/ChangeLog b/mcs/class/System.Web/System.Web/ChangeLog index 501d56d80c6..db71ff3fdaa 100644 --- a/mcs/class/System.Web/System.Web/ChangeLog +++ b/mcs/class/System.Web/System.Web/ChangeLog @@ -1,3 +1,7 @@ +2008-06-21 Robert Jordan + + * HttpRuntime.cs (.cctor): Workaround for bug #402263. + 2008-06-19 Marek Habersack * MimeTypes.cs: added a mime type entry for .xpi files. diff --git a/mcs/class/System.Web/System.Web/HttpRuntime.cs b/mcs/class/System.Web/System.Web/HttpRuntime.cs index b8d96e64c78..ac388356484 100644 --- a/mcs/class/System.Web/System.Web/HttpRuntime.cs +++ b/mcs/class/System.Web/System.Web/HttpRuntime.cs @@ -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) {