Version Description
Download this release
Release Info
Developer | codepeople |
Plugin | Payment Form for PayPal Pro |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.8 to 1.0.9
- README.txt +2 -2
- cp_ppp.php +3 -3
README.txt
CHANGED
@@ -183,5 +183,5 @@ If that doesn't work please check if your hosting service requires some specific
|
|
183 |
|
184 |
== Upgrade Notice ==
|
185 |
|
186 |
-
= 1.0.
|
187 |
-
* Fixed
|
183 |
|
184 |
== Upgrade Notice ==
|
185 |
|
186 |
+
= 1.0.9 =
|
187 |
+
* Fixed POST encoding
|
cp_ppp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Payment Form for PayPal Pro
|
4 |
Plugin URI: http://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.0.
|
7 |
Author: CodePeople.net
|
8 |
Author URI: http://codepeople.net
|
9 |
License: GPL
|
@@ -1289,11 +1289,11 @@ function cp_ppp_save_options()
|
|
1289 |
global $wpdb;
|
1290 |
if (!defined('CP_PPP_ID'))
|
1291 |
define ('CP_PPP_ID',intval($_POST["cp_ppp_id"]));
|
1292 |
-
|
1293 |
foreach ($_POST as $item => $value)
|
1294 |
if (!is_array($value))
|
1295 |
$_POST[$item] = stripcslashes($value);
|
1296 |
-
|
1297 |
$data = array(
|
1298 |
'form_structure' => $_POST['form_structure'],
|
1299 |
|
3 |
Plugin Name: Payment Form for PayPal Pro
|
4 |
Plugin URI: http://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.0.9
|
7 |
Author: CodePeople.net
|
8 |
Author URI: http://codepeople.net
|
9 |
License: GPL
|
1289 |
global $wpdb;
|
1290 |
if (!defined('CP_PPP_ID'))
|
1291 |
define ('CP_PPP_ID',intval($_POST["cp_ppp_id"]));
|
1292 |
+
/**
|
1293 |
foreach ($_POST as $item => $value)
|
1294 |
if (!is_array($value))
|
1295 |
$_POST[$item] = stripcslashes($value);
|
1296 |
+
*/
|
1297 |
$data = array(
|
1298 |
'form_structure' => $_POST['form_structure'],
|
1299 |
|