Changeset 2680229
- Timestamp:
- 02/16/2022 09:40:41 PM (4 years ago)
- Location:
- contact-form-submissions
- Files:
-
- 3 edited
- 5 copied
-
tags/1.7.2 (copied) (copied from contact-form-submissions/trunk)
-
tags/1.7.2/Admin.php (copied) (copied from contact-form-submissions/trunk/Admin.php)
-
tags/1.7.2/Submissions.php (copied) (copied from contact-form-submissions/trunk/Submissions.php) (1 diff)
-
tags/1.7.2/contact-form-submissions.php (copied) (copied from contact-form-submissions/trunk/contact-form-submissions.php) (1 diff)
-
tags/1.7.2/readme.txt (copied) (copied from contact-form-submissions/trunk/readme.txt) (2 diffs)
-
trunk/Submissions.php (modified) (1 diff)
-
trunk/contact-form-submissions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-submissions/tags/1.7.2/Submissions.php
r2505563 r2680229 171 171 foreach ($additional_fields as $name => $value) { 172 172 if (!empty($value)) { 173 add_post_meta($post_id, 'wpcf7s_posted-' . $name, $value);173 add_post_meta($post_id, 'wpcf7s_posted-' . $name, wp_kses_post($value)); 174 174 } 175 175 } -
contact-form-submissions/tags/1.7.2/contact-form-submissions.php
r2511030 r2680229 3 3 Plugin Name: Contact Form Submissions 4 4 Description: Never miss an enquiry again! Save all Contact Form 7 submissions in your database. 5 Version: 1.7. 15 Version: 1.7.2 6 6 Author: Jason Green 7 7 License: GPLv3 -
contact-form-submissions/tags/1.7.2/readme.txt
r2511030 r2680229 5 5 Requires at least: 3.0.1 6 6 Tested up to: 5.7 7 Stable tag: 1.7. 17 Stable tag: 1.7.2 8 8 Requires PHP: 5.6 9 9 License: GPLv3 … … 43 43 44 44 == Changelog == 45 46 = 1.7.2 = 47 * Security fix 45 48 46 49 = 1.7.1 = -
contact-form-submissions/trunk/Submissions.php
r2505563 r2680229 171 171 foreach ($additional_fields as $name => $value) { 172 172 if (!empty($value)) { 173 add_post_meta($post_id, 'wpcf7s_posted-' . $name, $value);173 add_post_meta($post_id, 'wpcf7s_posted-' . $name, wp_kses_post($value)); 174 174 } 175 175 } -
contact-form-submissions/trunk/contact-form-submissions.php
r2511030 r2680229 3 3 Plugin Name: Contact Form Submissions 4 4 Description: Never miss an enquiry again! Save all Contact Form 7 submissions in your database. 5 Version: 1.7. 15 Version: 1.7.2 6 6 Author: Jason Green 7 7 License: GPLv3 -
contact-form-submissions/trunk/readme.txt
r2511030 r2680229 5 5 Requires at least: 3.0.1 6 6 Tested up to: 5.7 7 Stable tag: 1.7. 17 Stable tag: 1.7.2 8 8 Requires PHP: 5.6 9 9 License: GPLv3 … … 43 43 44 44 == Changelog == 45 46 = 1.7.2 = 47 * Security fix 45 48 46 49 = 1.7.1 =
Note: See TracChangeset
for help on using the changeset viewer.