Changeset 3224717
- Timestamp:
- 01/18/2025 05:07:05 AM (14 months ago)
- Location:
- litcommerce/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
litcommerce.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
steps/SendWooCommerceKeys.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
litcommerce/trunk/changelog.txt
r3222670 r3224717 30 30 31 31 *Add: "Api Add/Delete Image For Product" 32 33 = 1.2.4 2025-01-18 = 34 35 *Fixed: "Replaced deprecated FILTER_SANITIZE_STRING with modern sanitization methods for PHP 7.4+ compatibility." -
litcommerce/trunk/litcommerce.php
r3222670 r3224717 3 3 Plugin Name: LitCommerce 4 4 Description: Helps you easily integrate your WooCommerce store with LitCommerce. 5 Version: 1.2. 35 Version: 1.2.4 6 6 Author: LitCommerce 7 7 Author URI: https://litcommerce.com … … 454 454 function get_litc_params($key) 455 455 { 456 $value = filter_input( INPUT_GET, $key, FILTER_SANITIZE_STRING ); 456 $value = htmlspecialchars(filter_input(INPUT_GET, $key), ENT_QUOTES, 'UTF-8'); 457 457 458 if(!$value){ 458 459 $value = null; … … 584 585 585 586 $filename = basename($image_url); 587 $filename = explode('?', $filename)[0]; 586 588 $file_path = $upload_dir['path'] . '/' . $filename; 587 589 -
litcommerce/trunk/readme.txt
r3222670 r3224717 4 4 Tags: WooCommerce, Amazon, eBay, Etsy, TikTok 5 5 Tested up to: 6.7.1 6 Stable tag: 1.2. 36 Stable tag: 1.2.4 7 7 License: GPL-2.0 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
litcommerce/trunk/steps/SendWooCommerceKeys.php
r3222670 r3224717 27 27 $url .= '&channel_url=' . urlencode( site_url() ); 28 28 $url .= '&from_app=marketplace'; 29 $url .= '&version_plugin=1.2. 3';29 $url .= '&version_plugin=1.2.4'; 30 30 31 31 if(@$_GET['reconnect'] == 1){
Note: See TracChangeset
for help on using the changeset viewer.