From 2223ec1cabbb3c8788ff7087da53ab214232d649 Mon Sep 17 00:00:00 2001 From: uckelman Date: Sun, 9 May 2010 19:19:21 +0000 Subject: buildPost is static. git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6831 67b53d14-2c14-4ace-a08f-0dab2b34000c --- src/HTTP_POST_multipart.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/HTTP_POST_multipart.php') diff --git a/src/HTTP_POST_multipart.php b/src/HTTP_POST_multipart.php index 64689bf..4b24a4a 100644 --- a/src/HTTP_POST_multipart.php +++ b/src/HTTP_POST_multipart.php @@ -122,13 +122,12 @@ class HTTP_POST_multipart { } public function dump() { - list(/* skip */, $content) = buildPost($this->_parts); + list(/* skip */, $content) = self::buildPost($this->_parts); return $content; } public function post($url) { - - list($boundary, $content) = buildPost($this->_parts); + list($boundary, $content) = self::buildPost($this->_parts); $ctype = 'Content-Type: multipart/form-data; boundary="' . $boundary . '"'; $ctx = stream_context_create( -- cgit v1.2.3