Contact Form 7 - Version 5.1.3

Version Description

  • Fixes a bug making it unable to unselect an option in the Mail tab panel.
Download this release

Release Info

Developer takayukister
Plugin Icon 128x128 Contact Form 7
Version 5.1.3
Comparing to
See all releases

Code changes from version 5.1.2 to 5.1.3

includes/contact-form-functions.php CHANGED
@@ -205,7 +205,7 @@ function wpcf7_sanitize_form( $input, $default = '' ) {
205
  }
206
 
207
  function wpcf7_sanitize_mail( $input, $defaults = array() ) {
208
- $defaults = wp_parse_args( $defaults, array(
209
  'active' => false,
210
  'subject' => '',
211
  'sender' => '',
205
  }
206
 
207
  function wpcf7_sanitize_mail( $input, $defaults = array() ) {
208
+ $input = wp_parse_args( $input, array(
209
  'active' => false,
210
  'subject' => '',
211
  'sender' => '',
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://contactform7.com/donate/
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 4.9
6
  Tested up to: 5.2
7
- Stable tag: 5.1.2
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -75,6 +75,10 @@ Do you have questions or issues with Contact Form 7? Use these support channels
75
 
76
  For more information, see [Releases](https://contactform7.com/category/releases/).
77
 
 
 
 
 
78
  = 5.1.2 =
79
 
80
  * Constant Contact: Introduces the contact list selector.
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 4.9
6
  Tested up to: 5.2
7
+ Stable tag: 5.1.3
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
75
 
76
  For more information, see [Releases](https://contactform7.com/category/releases/).
77
 
78
+ = 5.1.3 =
79
+
80
+ * Fixes a bug making it unable to unselect an option in the Mail tab panel.
81
+
82
  = 5.1.2 =
83
 
84
  * Constant Contact: Introduces the contact list selector.
wp-contact-form-7.php CHANGED
@@ -7,10 +7,10 @@ Author: Takayuki Miyoshi
7
  Author URI: https://ideasilo.wordpress.com/
8
  Text Domain: contact-form-7
9
  Domain Path: /languages/
10
- Version: 5.1.2
11
  */
12
 
13
- define( 'WPCF7_VERSION', '5.1.2' );
14
 
15
  define( 'WPCF7_REQUIRED_WP_VERSION', '4.9' );
16
 
7
  Author URI: https://ideasilo.wordpress.com/
8
  Text Domain: contact-form-7
9
  Domain Path: /languages/
10
+ Version: 5.1.3
11
  */
12
 
13
+ define( 'WPCF7_VERSION', '5.1.3' );
14
 
15
  define( 'WPCF7_REQUIRED_WP_VERSION', '4.9' );
16