Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Commit 29d3eda

Browse files
Merge pull request #2 from appinlet/release/1.0.1
Release/1.0.1
2 parents ec2a521 + dfdeed1 commit 29d3eda

5 files changed

Lines changed: 16 additions & 11 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# PaySubs_Gravity_Forms
2-
## PayGate Gravity Forms plugin v1.0.0 for Gravity Forms v2.4.15, WordPress v5.3.0
2+
## PayGate Gravity Forms plugin v1.0.1 for Gravity Forms v2.5.16.1, WordPress v5.9.0
33

44
This is the PayGate PaySubs1 (VCS) plugin for Gravity Forms. Please feel free to contact the PayGate support team at support@paygate.co.za should you require any assistance.
55

66
## Installation
7-
Please navigate to the [releases page](https://github.com/PayGate/PaySubs_Gravity_Forms/releases), download the latest release (v1.0.0) and unzip. You will then be able to follow the integration guide PDF which is included in the zip.
7+
Please navigate to the [releases page](https://github.com/PayGate/PaySubs_Gravity_Forms/releases), download the latest release (v1.0.1) and unzip. You will then be able to follow the integration guide PDF which is included in the zip.
88

99
## Collaboration
1010

changelog.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
= 1.0.1 - February 1, 2022 =
2+
* Tested with Wordpress 5.9 and Gravity Forms 2.5.16.1.
3+
* Bug fixes and improvements.
4+
15
= 1.0.0 - November 31, 2019 =
2-
* Initial release
6+
* Initial release

paysubs-encryption.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public function maybe_decrypt_entry_id( $entry_id )
212212
return $entry_id;
213213
} else {
214214
if ( is_callable( array( 'GFCommon', 'decrypt' ) ) ) {
215-
$entry_id = VCS_encryption( $entry_id, 'd' );
215+
$entry_id = PaySubs_encryption( $entry_id, 'd' );
216216
}
217217
return intval( $entry_id );
218218
}

paysubs-gf-class.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright (c) 2019 PayGate (Pty) Ltd
3+
* Copyright (c) 2022 PayGate (Pty) Ltd
44
*
55
* Author: App Inlet (Pty) Ltd
66
*
@@ -33,7 +33,8 @@ class GFPaySubs extends GFPaymentAddOn
3333
// Automatic upgrade enabled
3434
protected $_enable_rg_autoupgrade = false;
3535
protected $_paysubs_url = 'https://www.vcs.co.za/vvonline/vcspay.aspx';
36-
private static $_instance = null;
36+
// protected $_paysubs_url = 'https://core3.directpay.online/vcs/pay';
37+
private static $_instance = null;
3738

3839
public static function get_instance()
3940
{

paysubs.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
* Plugin Name: Gravity Forms PaySubs Add-On
55
* Plugin URI: https://github.com/PayGate/PaySubs_Gravity_Forms
66
* Description: Integrates Gravity Forms with PaySubs, a South African payment gateway.
7-
* Version: 1.0.0
8-
* Tested: 5.3.0
7+
* Version: 1.0.1
8+
* Tested: 5.9.0
99
* Author: PayGate (Pty) Ltd
1010
* Author URI: https://www.paygate.co.za/
1111
* Developer: App Inlet (Pty) Ltd
1212
* Developer URI: https://www.appinlet.com/
1313
* Text Domain: gravityformspaysubs
1414
* Domain Path: /languages
15-
*
16-
* Copyright: © 2019 PayGate (Pty) Ltd.
15+
*
16+
* Copyright: © 2022 PayGate (Pty) Ltd.
1717
* License: GNU General Public License v3.0
1818
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
1919
*/
@@ -28,7 +28,7 @@
2828

2929
function paysubs_init()
3030
{
31-
/**
31+
/**
3232
* Auto updates from GIT
3333
*
3434
* @since 2.2.9

0 commit comments

Comments
 (0)