Browse Source

fix unicode support

main
ghost 3 years ago
parent
commit
9b8f9e0b09
  1. 2
      src/system/curl.php

2
src/system/curl.php

@ -61,7 +61,7 @@ class Curl { @@ -61,7 +61,7 @@ class Curl {
}
if ($method == 'POST' && $postFields) {
curl_setopt($this->_curl, CURLOPT_POSTFIELDS, json_encode($postFields));
curl_setopt($this->_curl, CURLOPT_POSTFIELDS, json_encode($postFields, JSON_UNESCAPED_UNICODE));
}
}

Loading…
Cancel
Save