diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/HTTPClient.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/HTTPClient.php b/inc/HTTPClient.php index 3d843c912..8ff206444 100644 --- a/inc/HTTPClient.php +++ b/inc/HTTPClient.php @@ -479,7 +479,7 @@ class HTTPClient { function _postEncode($data){ foreach($data as $key => $val){ if($url) $url .= '&'; - $url .= $key.'='.urlencode($val); + $url .= urlencode($key).'='.urlencode($val); } return $url; } |