Skip to content

Commit

Permalink
Merge pull request #39 from david-bzh/fix-failed-to-execute-unzip
Browse files Browse the repository at this point in the history
fix: failed to execute unzip for all import/export
  • Loading branch information
junaidbhura authored Oct 9, 2022
2 parents 505e860 + 20ea644 commit becbdde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Http.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function post( $url = '', $args = array() ) {
curl_setopt( $curl_handle, CURLOPT_SSL_VERIFYHOST, 0 );
curl_setopt( $curl_handle, CURLOPT_CUSTOMREQUEST, 'POST' );
if ( ! empty( $args ) ) {
curl_setopt( $curl_handle, CURLOPT_POSTFIELDS, http_build_query( $args ) );
curl_setopt( $curl_handle, CURLOPT_POSTFIELDS, http_build_query( $args, '', '&' ) );
}
$response = curl_exec( $curl_handle );
curl_close( $curl_handle );
Expand Down

0 comments on commit becbdde

Please sign in to comment.