Closes #5389; Admin Culture Picker wrong cookie domain.

This commit is contained in:
Skrypt 2015-06-17 19:47:09 -04:00
parent de9fc2fb5b
commit c68d212681

View File

@ -37,9 +37,7 @@ namespace Orchard.Localization.Selectors {
Expires = _clock.UtcNow.AddYears(DefaultExpireTimeYear),
};
if (!String.IsNullOrEmpty(_shellSettings.RequestUrlHost)) {
cookie.Domain = _shellSettings.RequestUrlHost;
}
cookie.Domain = httpContext.Request.Url.Host;
if (!String.IsNullOrEmpty(_shellSettings.RequestUrlPrefix)) {
cookie.Path = GetCookiePath(httpContext);