From 3406a16025883ef43f41480885c099fd0ce91c99 Mon Sep 17 00:00:00 2001 From: Siemenskun Date: Sun, 22 May 2022 02:02:56 +0300 Subject: [PATCH] Fix typo --- classes/urlhelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/urlhelper.php b/classes/urlhelper.php index 637ad1a44..92e7f90df 100644 --- a/classes/urlhelper.php +++ b/classes/urlhelper.php @@ -396,7 +396,7 @@ class UrlHelper { if (curl_errno($ch) === 23 || curl_errno($ch) === 61) { curl_setopt($ch, CURLOPT_ENCODING, 'none'); - $contents = @curl_exec($ch); + $ret = @curl_exec($ch); } $headers_length = curl_getinfo($ch, CURLINFO_HEADER_SIZE);