Payment Form for PayPal Pro - Version 1.1.60

Version Description

  • Fixed reply-to header encoding

=

Download this release

Release Info

Developer codepeople
Plugin Icon 128x128 Payment Form for PayPal Pro
Version 1.1.60
Comparing to
See all releases

Code changes from version 1.1.59 to 1.1.60

Files changed (2) hide show
  1. README.txt +5 -2
  2. cp_ppp.php +2 -2
README.txt CHANGED
@@ -308,7 +308,10 @@ A: In all plugin versions you can turn off IP tracking to avoid saving that user
308
  = 1.1.59 =
309
  * Fixed Javascript minify conflicts
310
 
 
 
 
311
  == Upgrade Notice ==
312
 
313
- = 1.1.59 =
314
- * Fixed Javascript minify conflicts
308
  = 1.1.59 =
309
  * Fixed Javascript minify conflicts
310
 
311
+ = 1.1.60 =
312
+ * Fixed reply-to header encoding
313
+
314
  == Upgrade Notice ==
315
 
316
+ = 1.1.60 =
317
+ * Fixed reply-to header encoding
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.59
7
  Author: CodePeople
8
  Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
9
  License: GPL
@@ -1245,7 +1245,7 @@ function cp_ppp_process_ready_to_go_reservation($itemnumber, $payer_email = "",
1245
  {
1246
  wp_mail(trim($item), $subject, $message,
1247
  "From: \"$from\" <".$from.">\r\n".
1248
- ($replyto!=''?"Reply-To: \"$replyto\" <".$replyto.">\r\n":'').
1249
  $content_type.
1250
  "X-Mailer: PHP/" . phpversion(), $attachments);
1251
  }
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.60
7
  Author: CodePeople
8
  Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
9
  License: GPL
1245
  {
1246
  wp_mail(trim($item), $subject, $message,
1247
  "From: \"$from\" <".$from.">\r\n".
1248
+ ($replyto!=''?"Reply-To: ".$replyto."\r\n":'').
1249
  $content_type.
1250
  "X-Mailer: PHP/" . phpversion(), $attachments);
1251
  }