Plugin Directory

Changeset 3137588


Ignore:
Timestamp:
08/19/2024 11:53:04 AM (18 months ago)
Author:
tkc49
Message:

Update to version 2.27.5 from GitHub

Location:
kintone-form
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • kintone-form/tags/2.27.5/kintone-form.php

    r3134023 r3137588  
    44 * Plugin URI:
    55 * Description: This plugin is an addon for "Contact Form 7".
    6  * Version:     2.27.4
     6 * Version:     2.27.5
    77 * Author:      Takashi Hosoya
    88 * Author URI:  http://ht79.info/
  • kintone-form/tags/2.27.5/modules/dropdown.php

    r3134022 r3137588  
    5858        $value = kintone_form_check_acceptance( $value, $cf7_mail_tag );
    5959
    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            }
    6266        }
    6367
  • kintone-form/tags/2.27.5/readme.txt

    r3134023 r3137588  
    77Requires at least: 6.3
    88Tested up to: 6.5.4
    9 Stable tag: 2.27.4
     9Stable tag: 2.27.5
    1010Requires PHP: 7.4
    1111License: GPLv2 or later
     
    5050
    5151== Changelog ==
     522.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
    52552.27.4 (2024-08-12)
    5356* Version number update missed
  • kintone-form/trunk/kintone-form.php

    r3134023 r3137588  
    44 * Plugin URI:
    55 * Description: This plugin is an addon for "Contact Form 7".
    6  * Version:     2.27.4
     6 * Version:     2.27.5
    77 * Author:      Takashi Hosoya
    88 * Author URI:  http://ht79.info/
  • kintone-form/trunk/modules/dropdown.php

    r3134022 r3137588  
    5858        $value = kintone_form_check_acceptance( $value, $cf7_mail_tag );
    5959
    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            }
    6266        }
    6367
  • kintone-form/trunk/readme.txt

    r3134023 r3137588  
    77Requires at least: 6.3
    88Tested up to: 6.5.4
    9 Stable tag: 2.27.4
     9Stable tag: 2.27.5
    1010Requires PHP: 7.4
    1111License: GPLv2 or later
     
    5050
    5151== Changelog ==
     522.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
    52552.27.4 (2024-08-12)
    5356* Version number update missed
Note: See TracChangeset for help on using the changeset viewer.