diff --git a/composer.lock b/composer.lock index 7f492a7208fae..6b15dc8f46844 100644 --- a/composer.lock +++ b/composer.lock @@ -1848,16 +1848,16 @@ }, { "name": "joomla/http", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/joomla-framework/http.git", - "reference": "ec389a64def1d71d145fdcc06895cbd960f5d805" + "reference": "3379b5a0c68524685b89d6997e5fec56c6ad3d43" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/http/zipball/ec389a64def1d71d145fdcc06895cbd960f5d805", - "reference": "ec389a64def1d71d145fdcc06895cbd960f5d805", + "url": "https://api.github.com/repos/joomla-framework/http/zipball/3379b5a0c68524685b89d6997e5fec56c6ad3d43", + "reference": "3379b5a0c68524685b89d6997e5fec56c6ad3d43", "shasum": "" }, "require": { @@ -1903,7 +1903,7 @@ ], "support": { "issues": "https://github.com/joomla-framework/http/issues", - "source": "https://github.com/joomla-framework/http/tree/3.0.0" + "source": "https://github.com/joomla-framework/http/tree/3.0.1" }, "funding": [ { @@ -1915,7 +1915,7 @@ "type": "github" } ], - "time": "2023-10-07T21:22:46+00:00" + "time": "2024-03-11T18:42:37+00:00" }, { "name": "joomla/input", diff --git a/libraries/src/Http/Transport/SocketTransport.php b/libraries/src/Http/Transport/SocketTransport.php index 5e73dd8e5f7d9..17e9395a1e49c 100644 --- a/libraries/src/Http/Transport/SocketTransport.php +++ b/libraries/src/Http/Transport/SocketTransport.php @@ -86,7 +86,7 @@ public function request($method, UriInterface $uri, $data = null, array $headers // Build the request payload. $request = []; - $request[] = strtoupper($method) . ' ' . ((empty($path)) ? '/' : $path) . ' HTTP/1.1'; + $request[] = strtoupper($method) . ' ' . ((empty($path)) ? '/' : $path) . ' HTTP/1.0'; $request[] = 'Host: ' . $uri->getHost(); // If an explicit user agent is given use it.