Uses correct preview cookie same site and secure settings to allow preview mode to flow between links in the preview frame (#18640)

* Uses correct preview cookie same site and secure settings to allow preview mode to flow between links in the preview frame.

* Fixed comment.
This commit is contained in:
Andy Butland
2025-03-21 15:20:08 +01:00
committed by GitHub
parent 45b0e43b89
commit 394210a8f7
7 changed files with 235 additions and 8 deletions

View File

@@ -62,7 +62,7 @@ namespace Umbraco.Cms.Infrastructure.Install
{
installId = Guid.NewGuid();
_cookieManager.SetCookieValue(Constants.Web.InstallerCookieName, installId.ToString(), false);
_cookieManager.SetCookieValue(Constants.Web.InstallerCookieName, installId.ToString(), false, false, "Unspecified");
}
var dbProvider = string.Empty;