From 2ac04ba958c24613d634c79cfd06835a4210975b Mon Sep 17 00:00:00 2001 From: Samu Voutilainen Date: Fri, 23 May 2014 13:11:41 +0300 Subject: [PATCH] xmlrpcmsg: Convert createPayload() from private to public Apparently this was used elsewhere, even when it was marked as private. Adjusting to that now... --- lib/xmlrpcmsg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xmlrpcmsg.php b/lib/xmlrpcmsg.php index 428acc58..05e627d7 100644 --- a/lib/xmlrpcmsg.php +++ b/lib/xmlrpcmsg.php @@ -46,7 +46,7 @@ class xmlrpcmsg { return 'msg'; } - private function createPayload($charset_encoding='') + public function createPayload($charset_encoding='') { if ($charset_encoding != '') $this->content_type = 'text/xml; charset=' . $charset_encoding; -- 2.47.0