From ff9b4954e37c06b4d14540409368e246499fa27c Mon Sep 17 00:00:00 2001 From: kse Date: Mon, 7 Sep 2020 16:58:57 +0200 Subject: [PATCH] Fix: 'Cookies must be enabled in your browser!' message on some pages --- src/includes/functions.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/includes/functions.inc.php b/src/includes/functions.inc.php index 59717599..196a91de 100644 --- a/src/includes/functions.inc.php +++ b/src/includes/functions.inc.php @@ -419,6 +419,7 @@ namespace { curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); curl_setopt($ch, CURLOPT_ENCODING, ''); curl_setopt($ch, CURLOPT_CERTINFO, 1); + curl_setopt($ch, CURLOPT_COOKIEFILE, ''); if (!empty($request_method)) { curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $request_method);