From c3a3c3ab2c8f93285f2cf6e4694f40c862a9a5c0 Mon Sep 17 00:00:00 2001 From: Seti Date: Fri, 2 Apr 2021 00:58:08 +0200 Subject: [PATCH] Fix: 'Cookies must be enabled in your browser!' message on some pages (#1032) --- 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 44b6d129..1f432f51 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);