diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/HTTP_POST_multipart.php | 2 |
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']); |