Changeset 3296081
- Timestamp:
- 05/19/2025 02:38:15 AM (11 months ago)
- Location:
- ry-woocommerce-tools/trunk
- Files:
-
- 4 edited
-
includes/update.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
ry-woocommerce-tools.php (modified) (2 diffs)
-
woocommerce/shipping/ecpay/includes/admin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ry-woocommerce-tools/trunk/includes/update.php
r3294501 r3296081 112 112 } 113 113 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); 116 116 } 117 117 } -
ry-woocommerce-tools/trunk/readme.txt
r3294501 r3296081 6 6 Requires PHP: 8.0 7 7 Tested up to: 6.8 8 Stable tag: 3.5. 68 Stable tag: 3.5.7 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.txt … … 41 41 == Changelog == 42 42 43 = 3.5.7 - 2025-05-19 = 44 * 修正 - 列印託運單的時候可能發生訂單編號辨識錯誤的問題。 45 43 46 = 3.5.6 - 2025-05-15 = 44 47 * 調整 - 配合 Plugin check 檢查結果調整與修正。 -
ry-woocommerce-tools/trunk/ry-woocommerce-tools.php
r3294501 r3296081 5 5 * Plugin URI: https://ry-plugin.com/ry-woocommerce-tools 6 6 * Description: WooCommerce paymet and shipping tools 7 * Version: 3.5. 67 * Version: 3.5.7 8 8 * Requires at least: 6.6 9 9 * Requires PHP: 8.0 … … 22 22 function_exists('plugin_dir_url') or exit('No direct script access allowed'); 23 23 24 define('RY_WT_VERSION', '3.5. 6');24 define('RY_WT_VERSION', '3.5.7'); 25 25 define('RY_WT_PLUGIN_URL', plugin_dir_url(__FILE__)); 26 26 define('RY_WT_PLUGIN_DIR', plugin_dir_path(__FILE__)); -
ry-woocommerce-tools/trunk/woocommerce/shipping/ecpay/includes/admin.php
r3294501 r3296081 98 98 } 99 99 100 $order_ID = intval($_GET['orderid'] ?? '');100 $order_ID = sanitize_text_field(wp_unslash($_GET['orderid'] ?? '')); 101 101 $logistics_ID = sanitize_locale_name($_GET['id'] ?? ''); 102 102 $print_list = [];
Note: See TracChangeset
for help on using the changeset viewer.