From 2dc7401d3f7640dac38f4255eeab27a32df3be77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Sun, 15 Oct 2017 19:45:55 +0300 Subject: [PATCH] client: use slash as name/version separator this avoids weird ambiguity "XML-RPC for PHP 4.2.1" sounds like it's for PHP 4.2.1 --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index a33fe659..b9d8914c 100644 --- a/src/Client.php +++ b/src/Client.php @@ -187,7 +187,7 @@ function_exists('curl_init') && (($info = curl_version()) && }*/ // initialize user_agent string - $this->user_agent = PhpXmlRpc::$xmlrpcName . ' ' . PhpXmlRpc::$xmlrpcVersion; + $this->user_agent = PhpXmlRpc::$xmlrpcName . '/' . PhpXmlRpc::$xmlrpcVersion; } /**