From c74cc31254e96ff7a825acb293daaa13706bdaa5 Mon Sep 17 00:00:00 2001 From: gggeek <giunta.gaetano@gmail.com> Date: Thu, 10 Nov 2022 20:01:20 +0000 Subject: [PATCH] tag for release --- NEWS | 2 +- src/PhpXmlRpc.php | 2 +- src/Value.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 6f373551..154f6d3a 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -XML-RPC for PHP version 4.8.1 - unreleased +XML-RPC for PHP version 4.8.1 - 2022/11/10 * improved: remove warnings with php 8.1 due to usage of strftime diff --git a/src/PhpXmlRpc.php b/src/PhpXmlRpc.php index 76ea4cd2..c7c39eaa 100644 --- a/src/PhpXmlRpc.php +++ b/src/PhpXmlRpc.php @@ -80,7 +80,7 @@ class PhpXmlRpc public static $xmlrpc_internalencoding = "UTF-8"; public static $xmlrpcName = "XML-RPC for PHP"; - public static $xmlrpcVersion = "4.8.0"; + public static $xmlrpcVersion = "4.8.1"; // let user errors start at 800 public static $xmlrpcerruser = 800; diff --git a/src/Value.php b/src/Value.php index 295074e3..e058957d 100644 --- a/src/Value.php +++ b/src/Value.php @@ -309,7 +309,7 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess } elseif (is_int($val)) { $rs .= "<${typ}>" . date('Ymd\TH:i:s', $val) . "</${typ}>"; } else { - // not really a good idea here: but what shall we output anyway? left for backward compat... + // not really a good idea here: but what should we output anyway? left for backward compat... $rs .= "<${typ}>${val}</${typ}>"; } break; -- 2.47.0