Plugin Directory

Changeset 2680229


Ignore:
Timestamp:
02/16/2022 09:40:41 PM (4 years ago)
Author:
jasongreen
Message:

tagging version 1.7.2

Location:
contact-form-submissions
Files:
3 edited
5 copied

Legend:

Unmodified
Added
Removed
  • contact-form-submissions/tags/1.7.2/Submissions.php

    r2505563 r2680229  
    171171                     foreach ($additional_fields as $name => $value) {
    172172                         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));
    174174                         }
    175175                     }
  • contact-form-submissions/tags/1.7.2/contact-form-submissions.php

    r2511030 r2680229  
    33Plugin Name: Contact Form Submissions
    44Description: Never miss an enquiry again! Save all Contact Form 7 submissions in your database.
    5 Version:     1.7.1
     5Version:     1.7.2
    66Author:      Jason Green
    77License:     GPLv3
  • contact-form-submissions/tags/1.7.2/readme.txt

    r2511030 r2680229  
    55Requires at least: 3.0.1
    66Tested up to: 5.7
    7 Stable tag: 1.7.1
     7Stable tag: 1.7.2
    88Requires PHP: 5.6
    99License: GPLv3
     
    4343
    4444== Changelog ==
     45
     46= 1.7.2 =
     47* Security fix
    4548
    4649= 1.7.1 =
  • contact-form-submissions/trunk/Submissions.php

    r2505563 r2680229  
    171171                     foreach ($additional_fields as $name => $value) {
    172172                         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));
    174174                         }
    175175                     }
  • contact-form-submissions/trunk/contact-form-submissions.php

    r2511030 r2680229  
    33Plugin Name: Contact Form Submissions
    44Description: Never miss an enquiry again! Save all Contact Form 7 submissions in your database.
    5 Version:     1.7.1
     5Version:     1.7.2
    66Author:      Jason Green
    77License:     GPLv3
  • contact-form-submissions/trunk/readme.txt

    r2511030 r2680229  
    55Requires at least: 3.0.1
    66Tested up to: 5.7
    7 Stable tag: 1.7.1
     7Stable tag: 1.7.2
    88Requires PHP: 5.6
    99License: GPLv3
     
    4343
    4444== Changelog ==
     45
     46= 1.7.2 =
     47* Security fix
    4548
    4649= 1.7.1 =
Note: See TracChangeset for help on using the changeset viewer.