Changeset 2989122
- Timestamp:
- 11/05/2023 06:20:51 AM (2 years ago)
- Location:
- ht-pay-jp-for-kintone
- Files:
-
- 6 edited
- 1 copied
-
tags/1.4.1 (copied) (copied from ht-pay-jp-for-kintone/trunk)
-
tags/1.4.1/ht-payjp-for-kintone.php (modified) (1 diff)
-
tags/1.4.1/includes/class-ht-payjp-for-kintone-Payment.php (modified) (1 diff)
-
tags/1.4.1/readme.txt (modified) (2 diffs)
-
trunk/ht-payjp-for-kintone.php (modified) (1 diff)
-
trunk/includes/class-ht-payjp-for-kintone-Payment.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ht-pay-jp-for-kintone/tags/1.4.1/ht-payjp-for-kintone.php
r2988425 r2989122 8 8 * Text Domain: ht-pay-jp-for-kintone 9 9 * Domain Path: /languages 10 * Version: 1.4. 010 * Version: 1.4.1 11 11 * 12 12 * @package HT_Payjp_For_Kintone -
ht-pay-jp-for-kintone/tags/1.4.1/includes/class-ht-payjp-for-kintone-Payment.php
r2988425 r2989122 102 102 103 103 // 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 } 106 109 107 110 if ( is_array( $amount ) ) { -
ht-pay-jp-for-kintone/tags/1.4.1/readme.txt
r2988425 r2989122 5 5 Requires at least: 4.5 6 6 Tested up to: 6.3.2 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 53 53 54 54 == Changelog == 55 56 = 1.4.1( 2023-11-05 ) = 57 58 * [Fixed]Handle case where 'description' setting is not provided 59 55 60 56 61 = 1.4.0( 2023-11-03 ) = -
ht-pay-jp-for-kintone/trunk/ht-payjp-for-kintone.php
r2988425 r2989122 8 8 * Text Domain: ht-pay-jp-for-kintone 9 9 * Domain Path: /languages 10 * Version: 1.4. 010 * Version: 1.4.1 11 11 * 12 12 * @package HT_Payjp_For_Kintone -
ht-pay-jp-for-kintone/trunk/includes/class-ht-payjp-for-kintone-Payment.php
r2988425 r2989122 102 102 103 103 // 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 } 106 109 107 110 if ( is_array( $amount ) ) { -
ht-pay-jp-for-kintone/trunk/readme.txt
r2988425 r2989122 5 5 Requires at least: 4.5 6 6 Tested up to: 6.3.2 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 53 53 54 54 == Changelog == 55 56 = 1.4.1( 2023-11-05 ) = 57 58 * [Fixed]Handle case where 'description' setting is not provided 59 55 60 56 61 = 1.4.0( 2023-11-03 ) =
Note: See TracChangeset
for help on using the changeset viewer.