Plugin Directory

Changeset 3014691


Ignore:
Timestamp:
12/27/2023 01:46:25 PM (15 months ago)
Author:
growniche
Message:

PHP8で定期支払キャンセル完了画面を表示した時にPHPのWARNINGが表示されるのを修正

Location:
simple-stripe-checkout/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • simple-stripe-checkout/trunk/readme.txt

    r2994347 r3014691  
    44Requires at least: 4.9.13
    55Tested up to: 6.3.2
    6 Stable tag: 1.1.27
     6Stable tag: 1.1.28
    77License: GPL v3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7979= 1.1.26 =
    8080* 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  
    55  Plugin URI: https://s-page.biz/ssc/
    66  Description: 決済プラットフォーム「Stripe」の連携プラグイン
    7   Version: 1.1.27
     7  Version: 1.1.28
    88  Author: growniche
    99  Author URI: https://www.growniche.co.jp/
     
    17091709        $val = '';
    17101710        // 商品コード
    1711         $product_code = intval(trim(sanitize_text_field($_GET['product_id'])));
     1711        $product_code = isset($_GET['product_id']) ? intval(trim(sanitize_text_field($_GET['product_id']))) : 0;
    17121712        // STRIPEの公開キーをOPTIONSテーブルから取得
    17131713        $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.