Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 157288 | Differences between
and this patch

Collapse All | Expand All

(-)mcs/class/System.Web/System.Web/HttpRequest.cs (-1 / +2 lines)
Lines 925-931 Link Here
925
925
926
				if (physical_path == null) {
926
				if (physical_path == null) {
927
					// Don't call HttpRequest.MapPath here, as that one *trims* the input
927
					// Don't call HttpRequest.MapPath here, as that one *trims* the input
928
					physical_path = worker_request.GetFilePathTranslated ();
928
					physical_path = worker_request.MapPath (FilePath);
929
				}
929
				}
930
930
931
				if (SecurityManager.SecurityEnabled) {
931
				if (SecurityManager.SecurityEnabled) {
Lines 1248-1253 Link Here
1248
		internal void SetFilePath (string path)
1248
		internal void SetFilePath (string path)
1249
		{
1249
		{
1250
			file_path = path;
1250
			file_path = path;
1251
			physical_path = null;
1251
		}
1252
		}
1252
1253
1253
		internal void SetCurrentExePath (string path)
1254
		internal void SetCurrentExePath (string path)

Return to bug 157288