Changeset 3014691
- Timestamp:
- 12/27/2023 01:46:25 PM (15 months ago)
- Location:
- simple-stripe-checkout/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
simple-stripe-checkout/trunk/readme.txt
r2994347 r3014691 4 4 Requires at least: 4.9.13 5 5 Tested up to: 6.3.2 6 Stable tag: 1.1.2 76 Stable tag: 1.1.28 7 7 License: GPL v3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 79 79 = 1.1.26 = 80 80 * 2023-11-11 added billing-cycle. 81 = 1.1.28 = 82 * 2023-12-27 bug fix. -
simple-stripe-checkout/trunk/simple-stripe-checkout.php
r2994347 r3014691 5 5 Plugin URI: https://s-page.biz/ssc/ 6 6 Description: 決済プラットフォーム「Stripe」の連携プラグイン 7 Version: 1.1.2 77 Version: 1.1.28 8 8 Author: growniche 9 9 Author URI: https://www.growniche.co.jp/ … … 1709 1709 $val = ''; 1710 1710 // 商品コード 1711 $product_code = i ntval(trim(sanitize_text_field($_GET['product_id'])));1711 $product_code = isset($_GET['product_id']) ? intval(trim(sanitize_text_field($_GET['product_id']))) : 0; 1712 1712 // STRIPEの公開キーをOPTIONSテーブルから取得 1713 1713 $stripe_public_key = self::decrypt(get_option(self::OPTION_KEY__STRIPE_PUBLIC_KEY), self::ENCRYPT_PASSWORD);
Note: See TracChangeset
for help on using the changeset viewer.