-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
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;
} 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;