- changelog update
authorggiunta <ggiunta@013ecfd8-0664-425d-a759-9c98391dc3f9>
Sun, 23 May 2010 13:58:22 +0000 (13:58 +0000)
committerggiunta <ggiunta@013ecfd8-0664-425d-a759-9c98391dc3f9>
Sun, 23 May 2010 13:58:22 +0000 (13:58 +0000)
git-svn-id: https://svn.code.sf.net/p/phpxmlrpc/code/trunk/xmlrpc@76 013ecfd8-0664-425d-a759-9c98391dc3f9

ChangeLog
NEWS
lib/xmlrpc.inc

index c277284..41f1d40 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-23 - G. Giunta (giunta.gaetano@gmail.com)\r
+\r
+       * xmlrpc.inc: omit port on http 'Host' header if it is 80;\r
+       add a namespace declaration in response if ex:nil is in use\r
+\r
 2010-04-12 - G. Giunta (giunta.gaetano@gmail.com)\r
 \r
        * testsuite.php, parse_args.php: testsuite allows interrogating https servers ignoring their certs\r
diff --git a/NEWS b/NEWS
index ab62c1e..266d879 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+XML-RPC for PHP version 3.0.0 - 2010/xx/yy\r
+\r
+This release corrects all bugs that have been reported and sucesfully reproduced since\r
+version 3.0.0 beta\r
+\r
 XML-RPC for PHP version 3.0.0 beta - 2009/09/05\r
 \r
 This is the first release of the library to only support PHP 5.\r
@@ -28,6 +33,7 @@ version 2.2.1.
 Regardless of the intimidating message about dropping PHP 4 support, it still does\r
 support that ancient, broken and insecure platform.\r
 \r
+\r
 * fixed: php warning when receiving 'false' in a bool value\r
 * fixed: improve robustness of the debugger when parsing weird results from non-compliant servers\r
 * fixed: format floating point values using the correct decimal separator even when php locale is set to one that uses comma\r
index 5deade3..79dbafb 100644 (file)
                        }\r
 \r
                    // omit port if 80\r
-                   $port = ($port == '80') ? '' : (':' . $port);\r
+                   $port = ($port == 80) ? '' : (':' . $port);\r
 \r
                        $op= 'POST ' . $uri. " HTTP/1.0\r\n" .\r
                                'User-Agent: ' . $this->user_agent . "\r\n" .\r