summaryrefslogtreecommitdiff
path: root/src/HTTP_POST_multipart.php
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-05-09 15:24:21 +0000
committeruckelman <uckelman@nomic.net>2010-05-09 15:24:21 +0000
commitd10781783d3e402a6484a9d5eeec3d8a34676832 (patch)
treeba81d595eb73c22d6227b6ce9d4eed6d3f16ea0f /src/HTTP_POST_multipart.php
parent6d1990fd84c71d5b519c63ef604ae058cda70bb9 (diff)
Added missing ).
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6809 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/HTTP_POST_multipart.php')
-rw-r--r--src/HTTP_POST_multipart.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HTTP_POST_multipart.php b/src/HTTP_POST_multipart.php
index 9046e07..8f11d9f 100644
--- a/src/HTTP_POST_multipart.php
+++ b/src/HTTP_POST_multipart.php
@@ -61,7 +61,7 @@ class HTTP_POST_multipart {
$data = $part['data'];
break;
case 'base64':
- $data = chunk_split(base64_encode($part['data']);
+ $data = chunk_split(base64_encode($part['data']));
break;
default:
throw new Exception('unrecognized encoding: ' . $part['encoding']);