Changeset 3137588
- Timestamp:
- 08/19/2024 11:53:04 AM (18 months ago)
- Location:
- kintone-form
- Files:
-
- 6 edited
- 1 copied
-
tags/2.27.5 (copied) (copied from kintone-form/trunk)
-
tags/2.27.5/kintone-form.php (modified) (1 diff)
-
tags/2.27.5/modules/dropdown.php (modified) (1 diff)
-
tags/2.27.5/readme.txt (modified) (2 diffs)
-
trunk/kintone-form.php (modified) (1 diff)
-
trunk/modules/dropdown.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kintone-form/tags/2.27.5/kintone-form.php
r3134023 r3137588 4 4 * Plugin URI: 5 5 * Description: This plugin is an addon for "Contact Form 7". 6 * Version: 2.27. 46 * Version: 2.27.5 7 7 * Author: Takashi Hosoya 8 8 * Author URI: http://ht79.info/ -
kintone-form/tags/2.27.5/modules/dropdown.php
r3134022 r3137588 58 58 $value = kintone_form_check_acceptance( $value, $cf7_mail_tag ); 59 59 60 if ( is_array( $value ) && isset( $value[0] ) ) { 61 $value = $value[0]; 60 if ( is_array( $value ) ) { 61 if ( isset( $value[0] ) ) { 62 $value = $value[0]; 63 } else { 64 $value = ''; 65 } 62 66 } 63 67 -
kintone-form/tags/2.27.5/readme.txt
r3134023 r3137588 7 7 Requires at least: 6.3 8 8 Tested up to: 6.5.4 9 Stable tag: 2.27. 49 Stable tag: 2.27.5 10 10 Requires PHP: 7.4 11 11 License: GPLv2 or later … … 50 50 51 51 == Changelog == 52 2.27.5 (2024-08-19) 53 * Fixed an issue when using the Conditional Fields for Contact Form 7 plugin to set form radio buttons to kintone dropdown fields. Under specific conditions, the required check for radio buttons was not functioning correctly, resulting in empty array data being sent to kintone. This problem has been resolved. 54 52 55 2.27.4 (2024-08-12) 53 56 * Version number update missed -
kintone-form/trunk/kintone-form.php
r3134023 r3137588 4 4 * Plugin URI: 5 5 * Description: This plugin is an addon for "Contact Form 7". 6 * Version: 2.27. 46 * Version: 2.27.5 7 7 * Author: Takashi Hosoya 8 8 * Author URI: http://ht79.info/ -
kintone-form/trunk/modules/dropdown.php
r3134022 r3137588 58 58 $value = kintone_form_check_acceptance( $value, $cf7_mail_tag ); 59 59 60 if ( is_array( $value ) && isset( $value[0] ) ) { 61 $value = $value[0]; 60 if ( is_array( $value ) ) { 61 if ( isset( $value[0] ) ) { 62 $value = $value[0]; 63 } else { 64 $value = ''; 65 } 62 66 } 63 67 -
kintone-form/trunk/readme.txt
r3134023 r3137588 7 7 Requires at least: 6.3 8 8 Tested up to: 6.5.4 9 Stable tag: 2.27. 49 Stable tag: 2.27.5 10 10 Requires PHP: 7.4 11 11 License: GPLv2 or later … … 50 50 51 51 == Changelog == 52 2.27.5 (2024-08-19) 53 * Fixed an issue when using the Conditional Fields for Contact Form 7 plugin to set form radio buttons to kintone dropdown fields. Under specific conditions, the required check for radio buttons was not functioning correctly, resulting in empty array data being sent to kintone. This problem has been resolved. 54 52 55 2.27.4 (2024-08-12) 53 56 * Version number update missed
Note: See TracChangeset
for help on using the changeset viewer.