Always display debug messages even when there's badly encoded chars in them
[plcapi.git] / src / PhpXmlRpc.php
index deb697a..88b8f70 100644 (file)
@@ -66,7 +66,7 @@ class PhpXmlRpc
     // The encoding used internally by PHP.
     // String values received as xml will be converted to this, and php strings will be converted to xml
     // as if having been coded with this
-    public static $xmlrpc_internalencoding = "ISO-8859-1"; // TODO: maybe this would be better as UTF-8, or at least configurable?
+    public static $xmlrpc_internalencoding = "ISO-8859-1"; // TODO: maybe this would be better as UTF-8
 
     public static $xmlrpcName = "XML-RPC for PHP";
     public static $xmlrpcVersion = "4.0.0.beta";
@@ -136,4 +136,5 @@ class PhpXmlRpc
             }
         }
     }
+
 }