Skip to content

Commit

Permalink
+bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
feyzullahdemir committed Feb 21, 2023
1 parent 8cf5184 commit fa36248
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iyzipay/classes/IyzipayRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public static function curlPost($json, $authorization, $endpoint)
curl_setopt($curl, CURLOPT_POSTFIELDS, $json);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 0);
curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_NONE);
curl_setopt($curl, CURLOPT_TIMEOUT, 150);
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
"Authorization:".$authorization['authorization'],
Expand Down
2 changes: 1 addition & 1 deletion iyzipay/iyzipay.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct()
{
$this->name = 'iyzipay';
$this->tab = 'payments_gateways';
$this->version = '2.0.0';
$this->version = '2.1.0';
$this->author = 'iyzico';
$this->need_instance = 1;

Expand Down

0 comments on commit fa36248

Please sign in to comment.