Plugin Directory

Changeset 2989122


Ignore:
Timestamp:
11/05/2023 06:20:51 AM (2 years ago)
Author:
tkc49
Message:

Update to version 1.4.1 from GitHub

Location:
ht-pay-jp-for-kintone
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ht-pay-jp-for-kintone/tags/1.4.1/ht-payjp-for-kintone.php

    r2988425 r2989122  
    88 * Text Domain:     ht-pay-jp-for-kintone
    99 * Domain Path:     /languages
    10  * Version:         1.4.0
     10 * Version:         1.4.1
    1111 *
    1212 * @package         HT_Payjp_For_Kintone
  • ht-pay-jp-for-kintone/tags/1.4.1/includes/class-ht-payjp-for-kintone-Payment.php

    r2988425 r2989122  
    102102
    103103            // descriptionの設定.
    104             $description_cf7_mailtag = $payjpforkintone_setting_data['description-cf7-mailtag'];
    105             $description             = $posted_data[ $description_cf7_mailtag ];
     104            $description = '';
     105            if ( isset( $payjpforkintone_setting_data['description-cf7-mailtag'] ) && $payjpforkintone_setting_data['description-cf7-mailtag'] !== '' ) {
     106                $description_cf7_mailtag = $payjpforkintone_setting_data['description-cf7-mailtag'];
     107                $description             = $posted_data[ $description_cf7_mailtag ];
     108            }
    106109
    107110            if ( is_array( $amount ) ) {
  • ht-pay-jp-for-kintone/tags/1.4.1/readme.txt

    r2988425 r2989122  
    55Requires at least: 4.5
    66Tested up to: 6.3.2
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5353
    5454== Changelog ==
     55
     56= 1.4.1( 2023-11-05 ) =
     57
     58* [Fixed]Handle case where 'description' setting is not provided
     59
    5560
    5661= 1.4.0( 2023-11-03 ) =
  • ht-pay-jp-for-kintone/trunk/ht-payjp-for-kintone.php

    r2988425 r2989122  
    88 * Text Domain:     ht-pay-jp-for-kintone
    99 * Domain Path:     /languages
    10  * Version:         1.4.0
     10 * Version:         1.4.1
    1111 *
    1212 * @package         HT_Payjp_For_Kintone
  • ht-pay-jp-for-kintone/trunk/includes/class-ht-payjp-for-kintone-Payment.php

    r2988425 r2989122  
    102102
    103103            // descriptionの設定.
    104             $description_cf7_mailtag = $payjpforkintone_setting_data['description-cf7-mailtag'];
    105             $description             = $posted_data[ $description_cf7_mailtag ];
     104            $description = '';
     105            if ( isset( $payjpforkintone_setting_data['description-cf7-mailtag'] ) && $payjpforkintone_setting_data['description-cf7-mailtag'] !== '' ) {
     106                $description_cf7_mailtag = $payjpforkintone_setting_data['description-cf7-mailtag'];
     107                $description             = $posted_data[ $description_cf7_mailtag ];
     108            }
    106109
    107110            if ( is_array( $amount ) ) {
  • ht-pay-jp-for-kintone/trunk/readme.txt

    r2988425 r2989122  
    55Requires at least: 4.5
    66Tested up to: 6.3.2
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5353
    5454== Changelog ==
     55
     56= 1.4.1( 2023-11-05 ) =
     57
     58* [Fixed]Handle case where 'description' setting is not provided
     59
    5560
    5661= 1.4.0( 2023-11-03 ) =
Note: See TracChangeset for help on using the changeset viewer.