summaryrefslogtreecommitdiff
path: root/inc/HTTPClient.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/HTTPClient.php')
-rw-r--r--inc/HTTPClient.php14
1 files changed, 1 insertions, 13 deletions
diff --git a/inc/HTTPClient.php b/inc/HTTPClient.php
index 224b32982..3964c8fbc 100644
--- a/inc/HTTPClient.php
+++ b/inc/HTTPClient.php
@@ -806,19 +806,7 @@ class HTTPClient {
* @author Andreas Gohr <andi@splitbrain.org>
*/
function _postEncode($data){
- $url = '';
- foreach($data as $key => $val){
- if (is_array($val)) {
- foreach ($val as $k => $v) {
- if($url) $url .= '&';
- $url .= urlencode($key).'['.$k.']='.urlencode($v);
- }
- } else {
- if($url) $url .= '&';
- $url .= urlencode($key).'='.urlencode($val);
- }
- }
- return $url;
+ return http_build_query($data,'','&');
}
/**