* WebConfigurationManager.cs: do not normalize the path in FindWebConfig when getting the virtual directory. svn path=/trunk/mcs/; revision=122844
@@ -1,3 +1,8 @@
+2009-01-09 Marek Habersack <[email protected]>
+
+ * WebConfigurationManager.cs: do not normalize the path in
+ FindWebConfig when getting the virtual directory.
2009-01-08 Marek Habersack <[email protected]>
* WebConfigurationManager.cs: improve performance of
@@ -395,7 +395,7 @@ namespace System.Web.Configuration {
if (path [path.Length - 1] == '/')
dir = path;
else {
- dir = VirtualPathUtility.GetDirectory (path);
+ dir = VirtualPathUtility.GetDirectory (path, false);
if (dir == null)
return path;
}