Changeset 3134022
- Timestamp:
- 08/12/2024 08:47:15 AM (20 months ago)
- Location:
- kintone-form
- Files:
-
- 6 edited
- 1 copied
-
tags/2.27.3 (copied) (copied from kintone-form/trunk)
-
tags/2.27.3/kintone-form.php (modified) (1 diff)
-
tags/2.27.3/modules/dropdown.php (modified) (1 diff)
-
tags/2.27.3/readme.txt (modified) (1 diff)
-
trunk/kintone-form.php (modified) (1 diff)
-
trunk/modules/dropdown.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kintone-form/tags/2.27.3/kintone-form.php
r3101860 r3134022 4 4 * Plugin URI: 5 5 * Description: This plugin is an addon for "Contact Form 7". 6 * Version: 2.27. 26 * Version: 2.27.3 7 7 * Author: Takashi Hosoya 8 8 * Author URI: http://ht79.info/ -
kintone-form/tags/2.27.3/modules/dropdown.php
r2897736 r3134022 58 58 $value = kintone_form_check_acceptance( $value, $cf7_mail_tag ); 59 59 60 if ( is_array( $value ) ) {60 if ( is_array( $value ) && isset( $value[0] ) ) { 61 61 $value = $value[0]; 62 62 } -
kintone-form/tags/2.27.3/readme.txt
r3101860 r3134022 50 50 51 51 == Changelog == 52 2.27.3 (2024-08-12) 53 * Refactor dropdown.php to handle array values in KintoneFormDropdown class. 54 52 55 2.27.2 (2024-06-12) 53 56 * Improved error handling for numeric format errors in number.php -
kintone-form/trunk/kintone-form.php
r3101860 r3134022 4 4 * Plugin URI: 5 5 * Description: This plugin is an addon for "Contact Form 7". 6 * Version: 2.27. 26 * Version: 2.27.3 7 7 * Author: Takashi Hosoya 8 8 * Author URI: http://ht79.info/ -
kintone-form/trunk/modules/dropdown.php
r2897736 r3134022 58 58 $value = kintone_form_check_acceptance( $value, $cf7_mail_tag ); 59 59 60 if ( is_array( $value ) ) {60 if ( is_array( $value ) && isset( $value[0] ) ) { 61 61 $value = $value[0]; 62 62 } -
kintone-form/trunk/readme.txt
r3101860 r3134022 50 50 51 51 == Changelog == 52 2.27.3 (2024-08-12) 53 * Refactor dropdown.php to handle array values in KintoneFormDropdown class. 54 52 55 2.27.2 (2024-06-12) 53 56 * Improved error handling for numeric format errors in number.php
Note: See TracChangeset
for help on using the changeset viewer.