From 5c221ccb7547c0c798f45aa80342d5d8c91b76b2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Mon, 25 Jan 2021 19:13:46 +0100 Subject: [PATCH] Fix the cookie refresh after WCFSetup We need to set user_session, as acp_session is gone. --- .../lib/system/package/PackageInstallationDispatcher.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php index 88f2151476..508c588cc8 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php @@ -247,7 +247,7 @@ class PackageInstallationDispatcher ]); \define('SIGNATURE_SECRET', $signatureSecret); HeaderUtil::setCookie( - 'acp_session', + 'user_session', // We do not use the cache-timing safe class Hex, because we run the // function during the setup. CryptoUtil::createSignedString( -- 2.20.1