From 9050598b08fd426aafe1a27ccea0ba445134a7ea Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 16 Nov 2025 12:30:44 +0100 Subject: Fix undefined array key CURLOPT_PROXY (#8218) > PHP Warning: Undefined array key 10004 in ./FreshRSS/app/Utils/httpUtil.php on line 276 --- app/Utils/httpUtil.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') diff --git a/app/Utils/httpUtil.php b/app/Utils/httpUtil.php index df0d14ab5..e43891f34 100644 --- a/app/Utils/httpUtil.php +++ b/app/Utils/httpUtil.php @@ -273,7 +273,7 @@ final class FreshRSS_http_Util { $proxy = is_string(FreshRSS_Context::systemConf()->curl_options[CURLOPT_PROXY] ?? null) ? FreshRSS_Context::systemConf()->curl_options[CURLOPT_PROXY] : ''; if (is_array($attributes['curl_params'] ?? null)) { $options = self::sanitizeCurlParams($attributes['curl_params']); - $proxy = is_string($options[CURLOPT_PROXY]) ? $options[CURLOPT_PROXY] : ''; + $proxy = is_string($options[CURLOPT_PROXY] ?? null) ? $options[CURLOPT_PROXY] : ''; if (is_array($options[CURLOPT_HTTPHEADER] ?? null)) { // Remove headers problematic for security $options[CURLOPT_HTTPHEADER] = array_filter($options[CURLOPT_HTTPHEADER], -- cgit v1.2.3