Skip to content

Commit f8ec847

Browse files
committed
compatibility for 5.3
1 parent 91e99b5 commit f8ec847

File tree

4 files changed

+45
-156
lines changed

4 files changed

+45
-156
lines changed

admin/class-paystack-forms-admin.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ function kkd_pff_paystack_setting_page() {
4747
<tr valign="top">
4848
<th scope="row">Test Secret Key</th>
4949
<td>
50-
51-
<input type="text" name="tsk" value="<?php echo esc_attr( get_option('tsk') ); ?>" /></td>
50+
<input type="text" name="tsk" value="<?php echo esc_attr( get_option('tsk') ); ?>" /></td>
5251
</tr>
5352

5453
<tr valign="top">

includes/class-paystack-forms.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Kkd_Pff_Paystack {
4343
public function __construct() {
4444

4545
$this->plugin_name = 'pff-paystack';
46-
$this->version = '1.0.4';
46+
$this->version = '2.0.0';
4747

4848
$this->load_dependencies();
4949
$this->set_locale();

paystack-forms.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Payment forms for Paystack
44
Plugin URI: https://github.com/Kendysond/Wordpress-paystack-forms
55
Description: Payment forms for Paystack allows you create forms that will be used to bill clients for goods and services via Paystack.
6-
Version: 1.1.0
6+
Version: 2.0.0
77
Author: Douglas Kendyson
88
Author URI: http://kendyson.com
99
License: GPL-2.0+
@@ -15,7 +15,7 @@
1515
}
1616
define( 'KKD_PFF_PAYSTACK_PLUGIN_PATH', plugins_url( __FILE__ ) );
1717
define( 'KKD_PFF_PAYSTACK_MAIN_FILE', __FILE__ );
18-
define( 'KKD_PFF_PAYSTACK_VERSION', '1.0.4' );
18+
define( 'KKD_PFF_PAYSTACK_VERSION', '2.0.0' );
1919
define( 'KKD_PFF_PAYSTACK_TABLE', 'paystack_forms_payments' );
2020

2121

0 commit comments

Comments
 (0)