Plugin Directory

Changeset 3224717


Ignore:
Timestamp:
01/18/2025 05:07:05 AM (14 months ago)
Author:
litexten
Message:

bug fixes

Location:
litcommerce/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • litcommerce/trunk/changelog.txt

    r3222670 r3224717  
    3030
    3131*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  
    33Plugin Name: LitCommerce
    44Description: Helps you easily integrate your WooCommerce store with LitCommerce.
    5 Version: 1.2.3
     5Version: 1.2.4
    66Author: LitCommerce
    77Author URI: https://litcommerce.com
     
    454454function get_litc_params($key)
    455455{
    456     $value = filter_input( INPUT_GET, $key, FILTER_SANITIZE_STRING );
     456    $value = htmlspecialchars(filter_input(INPUT_GET, $key), ENT_QUOTES, 'UTF-8');
     457
    457458    if(!$value){
    458459        $value = null;
     
    584585
    585586    $filename = basename($image_url);
     587    $filename = explode('?', $filename)[0];
    586588    $file_path = $upload_dir['path'] . '/' . $filename;
    587589
  • litcommerce/trunk/readme.txt

    r3222670 r3224717  
    44Tags: WooCommerce, Amazon, eBay, Etsy, TikTok
    55Tested up to: 6.7.1
    6 Stable tag: 1.2.3
     6Stable tag: 1.2.4
    77License: GPL-2.0
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • litcommerce/trunk/steps/SendWooCommerceKeys.php

    r3222670 r3224717  
    2727        $url     .= '&channel_url=' . urlencode( site_url() );
    2828        $url     .= '&from_app=marketplace';
    29         $url     .= '&version_plugin=1.2.3';
     29        $url     .= '&version_plugin=1.2.4';
    3030
    3131        if(@$_GET['reconnect'] == 1){
Note: See TracChangeset for help on using the changeset viewer.