Version Description
- Fixed bug in activation process
=
Download this release
Release Info
Developer | codepeople |
Plugin | Payment Form for PayPal Pro |
Version | 1.1.38 |
Comparing to | |
See all releases |
Code changes from version 1.1.37 to 1.1.38
- README.txt +5 -2
- cp_ppp.php +2 -2
README.txt
CHANGED
@@ -242,7 +242,10 @@ A: In all plugin versions you can turn off IP tracking to avoid saving that user
|
|
242 |
= 1.1.37 =
|
243 |
* Optional deactivation feedback
|
244 |
|
|
|
|
|
|
|
245 |
== Upgrade Notice ==
|
246 |
|
247 |
-
= 1.1.
|
248 |
-
*
|
242 |
= 1.1.37 =
|
243 |
* Optional deactivation feedback
|
244 |
|
245 |
+
= 1.1.38 =
|
246 |
+
* Fixed bug in activation process
|
247 |
+
|
248 |
== Upgrade Notice ==
|
249 |
|
250 |
+
= 1.1.38 =
|
251 |
+
* Fixed bug in activation process
|
cp_ppp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Payment Form for PayPal Pro
|
4 |
Plugin URI: https://wordpress.dwbooster.com/forms/paypal-payment-pro-form
|
5 |
Description: Payment Form for PayPal Pro to accept credit cards directly into your website. Official PayPal Partner.
|
6 |
-
Version: 1.1.
|
7 |
Author: CodePeople
|
8 |
Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
|
9 |
License: GPL
|
@@ -114,7 +114,7 @@ add_action('plugins_loaded', 'cpppp_plugin_init');
|
|
114 |
|
115 |
//START: activation redirection
|
116 |
function cpppp_activation_redirect( $plugin ) {
|
117 |
-
if( $plugin == plugin_basename( __FILE__ ) ) {
|
118 |
exit( wp_redirect( admin_url( 'admin.php?page=cp_ppp' ) ) );
|
119 |
}
|
120 |
}
|
3 |
Plugin Name: Payment Form for PayPal Pro
|
4 |
Plugin URI: https://wordpress.dwbooster.com/forms/paypal-payment-pro-form
|
5 |
Description: Payment Form for PayPal Pro to accept credit cards directly into your website. Official PayPal Partner.
|
6 |
+
Version: 1.1.38
|
7 |
Author: CodePeople
|
8 |
Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
|
9 |
License: GPL
|
114 |
|
115 |
//START: activation redirection
|
116 |
function cpppp_activation_redirect( $plugin ) {
|
117 |
+
if( $plugin == plugin_basename( __FILE__ ) && $_POST["action"] != 'activate-selected' ) {
|
118 |
exit( wp_redirect( admin_url( 'admin.php?page=cp_ppp' ) ) );
|
119 |
}
|
120 |
}
|