Plugin Directory

Changeset 3296081


Ignore:
Timestamp:
05/19/2025 02:38:15 AM (11 months ago)
Author:
fantasyworld
Message:

update 3.5.7

Location:
ry-woocommerce-tools/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ry-woocommerce-tools/trunk/includes/update.php

    r3294501 r3296081  
    112112        }
    113113
    114         if (version_compare($now_version, '3.5.6', '<')) {
    115             RY_WT::update_option('version', '3.5.6', true);
     114        if (version_compare($now_version, '3.5.7', '<')) {
     115            RY_WT::update_option('version', '3.5.7', true);
    116116        }
    117117    }
  • ry-woocommerce-tools/trunk/readme.txt

    r3294501 r3296081  
    66Requires PHP: 8.0
    77Tested up to: 6.8
    8 Stable tag: 3.5.6
     8Stable tag: 3.5.7
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.txt
     
    4141== Changelog ==
    4242
     43= 3.5.7 - 2025-05-19 =
     44* 修正 - 列印託運單的時候可能發生訂單編號辨識錯誤的問題。
     45
    4346= 3.5.6 - 2025-05-15 =
    4447* 調整 - 配合 Plugin check 檢查結果調整與修正。
  • ry-woocommerce-tools/trunk/ry-woocommerce-tools.php

    r3294501 r3296081  
    55 * Plugin URI: https://ry-plugin.com/ry-woocommerce-tools
    66 * Description: WooCommerce paymet and shipping tools
    7  * Version: 3.5.6
     7 * Version: 3.5.7
    88 * Requires at least: 6.6
    99 * Requires PHP: 8.0
     
    2222function_exists('plugin_dir_url') or exit('No direct script access allowed');
    2323
    24 define('RY_WT_VERSION', '3.5.6');
     24define('RY_WT_VERSION', '3.5.7');
    2525define('RY_WT_PLUGIN_URL', plugin_dir_url(__FILE__));
    2626define('RY_WT_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • ry-woocommerce-tools/trunk/woocommerce/shipping/ecpay/includes/admin.php

    r3294501 r3296081  
    9898        }
    9999
    100         $order_ID = intval($_GET['orderid'] ?? '');
     100        $order_ID = sanitize_text_field(wp_unslash($_GET['orderid'] ?? ''));
    101101        $logistics_ID = sanitize_locale_name($_GET['id'] ?? '');
    102102        $print_list = [];
Note: See TracChangeset for help on using the changeset viewer.