Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions dotnet/src/dotnetframework/GxClasses/Middleware/GXHttp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1989,7 +1989,7 @@ private bool checkAuthorization(string permissionPrefix, string reqUrl, bool bRe
return isOK && isPermissionOK;
}

private static string GetGAMLoginWebObject()
private string GetGAMLoginWebObject()
{
string loginObject = string.Empty;
if (Config.GetValueOf("IntegratedSecurityLoginWeb", out loginObject))
Expand All @@ -1998,9 +1998,10 @@ private static string GetGAMLoginWebObject()
if (loginObjParts.Length > 0)
loginObject = loginObjParts[0] + ".aspx";
}
return loginObject;

return formatLink(loginObject);
}
private static string GetGAMNotAuthorizedWebObject()
private string GetGAMNotAuthorizedWebObject()
{
string loginObject = string.Empty;
if (Config.GetValueOf("IntegratedSecurityNotAuthorizedWeb", out loginObject))
Expand All @@ -2009,7 +2010,8 @@ private static string GetGAMNotAuthorizedWebObject()
if (loginObjParts.Length > 0)
loginObject = loginObjParts[0] + ".aspx";
}
return loginObject;

return formatLink(loginObject);
}

protected virtual void sendCacheHeaders()
Expand Down