Contact Form Submissions - Version 1.7.2

Version Description

  • Security fix
Download this release

Release Info

Developer jasongreen
Plugin Icon 128x128 Contact Form Submissions
Version 1.7.2
Comparing to
See all releases

Code changes from version 1.7.1 to 1.7.2

Files changed (3) hide show
  1. Submissions.php +1 -1
  2. contact-form-submissions.php +1 -1
  3. readme.txt +4 -1
Submissions.php CHANGED
@@ -170,7 +170,7 @@ class WPCF7Submissions
170
  if (!empty($additional_fields)) {
171
  foreach ($additional_fields as $name => $value) {
172
  if (!empty($value)) {
173
- add_post_meta($post_id, 'wpcf7s_posted-' . $name, $value);
174
  }
175
  }
176
  }
170
  if (!empty($additional_fields)) {
171
  foreach ($additional_fields as $name => $value) {
172
  if (!empty($value)) {
173
+ add_post_meta($post_id, 'wpcf7s_posted-' . $name, wp_kses_post($value));
174
  }
175
  }
176
  }
contact-form-submissions.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Contact Form Submissions
4
  Description: Never miss an enquiry again! Save all Contact Form 7 submissions in your database.
5
- Version: 1.7.1
6
  Author: Jason Green
7
  License: GPLv3
8
  Domain Path: /languages
2
  /*
3
  Plugin Name: Contact Form Submissions
4
  Description: Never miss an enquiry again! Save all Contact Form 7 submissions in your database.
5
+ Version: 1.7.2
6
  Author: Jason Green
7
  License: GPLv3
8
  Domain Path: /languages
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: contact form 7, save contact form, submissions, contact form db, cf7, wpcf
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SNHXWSXSPYATE
5
  Requires at least: 3.0.1
6
  Tested up to: 5.7
7
- Stable tag: 1.7.1
8
  Requires PHP: 5.6
9
  License: GPLv3
10
 
@@ -43,6 +43,9 @@ None yet
43
 
44
  == Changelog ==
45
 
 
 
 
46
  = 1.7.1 =
47
  * Security fix
48
 
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SNHXWSXSPYATE
5
  Requires at least: 3.0.1
6
  Tested up to: 5.7
7
+ Stable tag: 1.7.2
8
  Requires PHP: 5.6
9
  License: GPLv3
10
 
43
 
44
  == Changelog ==
45
 
46
+ = 1.7.2 =
47
+ * Security fix
48
+
49
  = 1.7.1 =
50
  * Security fix
51