From 8a3e3f1cb6061180c53cb18e2ad823f68ff91ac0 Mon Sep 17 00:00:00 2001 From: Hassan Amouhzi Date: Sun, 11 Apr 2021 21:00:09 +0200 Subject: [PATCH] Fix version used in the User Agent. --- src/Curl/Curl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Curl/Curl.php b/src/Curl/Curl.php index a7841e7..c572628 100644 --- a/src/Curl/Curl.php +++ b/src/Curl/Curl.php @@ -66,7 +66,7 @@ class Curl /** * @var string The user agent name which is set when making a request */ - const USER_AGENT = 'PHP Curl/2.4 (+https://github.com/php-mod/curl)'; + const USER_AGENT = 'PHP Curl/2.3 (+https://github.com/php-mod/curl)'; private $_cookies = array();