Skip to content

Commit

Permalink
IPN updates
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoshualewis committed Apr 22, 2021
1 parent 357a5d2 commit 3a1a4a4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions modules/gateways/bitpaycheckout.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* BitPay Checkout 3.0.1.9
* BitPay Checkout 3.1.0.0
*
* Within the module itself, all functions must be prefixed with the module
* filename, followed by an underscore, and then the function name. For this
Expand Down Expand Up @@ -54,7 +54,7 @@ function bitpaycheckout_MetaData()
{
return array(
'DisplayName' => 'BitPay_Checkout_WHMCS',
'APIVersion' => '3.0.1.9', // Use API Version 1.1
'APIVersion' => '3.1.0.0', // Use API Version 1.1
'DisableLocalCreditCardInput' => false,
'TokenisedStorage' => false,
);
Expand Down
4 changes: 2 additions & 2 deletions modules/gateways/bitpaycheckout/bitpaycheckout.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* BitPay Checkout 3.0.1.9
* BitPay Checkout 3.1.0.0
*
* Within the module itself, all functions must be prefixed with the module
* filename, followed by an underscore, and then the function name. For this
Expand Down Expand Up @@ -54,7 +54,7 @@ function bitpaycheckout_MetaData()
{
return array(
'DisplayName' => 'BitPay_Checkout_WHMCS',
'APIVersion' => '3.0.1.9', // Use API Version 1.1
'APIVersion' => '3.1.0.0', // Use API Version 1.1
'DisableLocalCreditCardInput' => false,
'TokenisedStorage' => false,
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/**
* BitPay Checkout Callback 3.0.1.9
* BitPay Checkout Callback 3.1.0.0
*
* This file demonstrates how a payment gateway callback should be
* handled within WHMCS.
Expand Down
3 changes: 2 additions & 1 deletion modules/gateways/bitpaycheckout/bitpaycheckout_ipn.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/**
* BitPay Checkout IPN 3.0.1.9
* BitPay Checkout IPN 3.1.0.0
*
* This file demonstrates how a payment gateway callback should be
* handled within WHMCS.
Expand Down Expand Up @@ -198,4 +198,5 @@ function checkInvoiceStatus($url){

break;
}
http_response_code(200);
endif;#end of the table lookup

0 comments on commit 3a1a4a4

Please sign in to comment.