tag for release 4.8.1
authorgggeek <giunta.gaetano@gmail.com>
Thu, 10 Nov 2022 20:01:20 +0000 (20:01 +0000)
committergggeek <giunta.gaetano@gmail.com>
Thu, 10 Nov 2022 20:01:20 +0000 (20:01 +0000)
NEWS
src/PhpXmlRpc.php
src/Value.php

diff --git a/NEWS b/NEWS
index 6f37355..154f6d3 100644 (file)
--- 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
 
index 76ea4cd..c7c39ea 100644 (file)
@@ -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;
index 295074e..e058957 100644 (file)
@@ -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;