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

Commit

Permalink
Merge pull request #2 from appinlet/release/1.0.1
Browse files Browse the repository at this point in the history
Release/1.0.1
  • Loading branch information
appinlet authored Feb 1, 2022
2 parents ec2a521 + dfdeed1 commit 29d3eda
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# PaySubs_Gravity_Forms
## PayGate Gravity Forms plugin v1.0.0 for Gravity Forms v2.4.15, WordPress v5.3.0
## PayGate Gravity Forms plugin v1.0.1 for Gravity Forms v2.5.16.1, WordPress v5.9.0

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.

## Installation
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.
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.

## Collaboration

Expand Down
6 changes: 5 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
= 1.0.1 - February 1, 2022 =
* Tested with Wordpress 5.9 and Gravity Forms 2.5.16.1.
* Bug fixes and improvements.

= 1.0.0 - November 31, 2019 =
* Initial release
* Initial release
2 changes: 1 addition & 1 deletion paysubs-encryption.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public function maybe_decrypt_entry_id( $entry_id )
return $entry_id;
} else {
if ( is_callable( array( 'GFCommon', 'decrypt' ) ) ) {
$entry_id = VCS_encryption( $entry_id, 'd' );
$entry_id = PaySubs_encryption( $entry_id, 'd' );
}
return intval( $entry_id );
}
Expand Down
5 changes: 3 additions & 2 deletions paysubs-gf-class.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
* Copyright (c) 2019 PayGate (Pty) Ltd
* Copyright (c) 2022 PayGate (Pty) Ltd
*
* Author: App Inlet (Pty) Ltd
*
Expand Down Expand Up @@ -33,7 +33,8 @@ class GFPaySubs extends GFPaymentAddOn
// Automatic upgrade enabled
protected $_enable_rg_autoupgrade = false;
protected $_paysubs_url = 'https://www.vcs.co.za/vvonline/vcspay.aspx';
private static $_instance = null;
// protected $_paysubs_url = 'https://core3.directpay.online/vcs/pay';
private static $_instance = null;

public static function get_instance()
{
Expand Down
10 changes: 5 additions & 5 deletions paysubs.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
* Plugin Name: Gravity Forms PaySubs Add-On
* Plugin URI: https://github.com/PayGate/PaySubs_Gravity_Forms
* Description: Integrates Gravity Forms with PaySubs, a South African payment gateway.
* Version: 1.0.0
* Tested: 5.3.0
* Version: 1.0.1
* Tested: 5.9.0
* Author: PayGate (Pty) Ltd
* Author URI: https://www.paygate.co.za/
* Developer: App Inlet (Pty) Ltd
* Developer URI: https://www.appinlet.com/
* Text Domain: gravityformspaysubs
* Domain Path: /languages
*
* Copyright: © 2019 PayGate (Pty) Ltd.
*
* Copyright: © 2022 PayGate (Pty) Ltd.
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
Expand All @@ -28,7 +28,7 @@

function paysubs_init()
{
/**
/**
* Auto updates from GIT
*
* @since 2.2.9
Expand Down

0 comments on commit 29d3eda

Please sign in to comment.