Plugin Directory

Changeset 3226563


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

bug fixes

Location:
litcommerce/trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • litcommerce/trunk/changelog.txt

    r3224717 r3226563  
    3434
    3535*Fixed: "Replaced deprecated FILTER_SANITIZE_STRING with modern sanitization methods for PHP 7.4+ compatibility."
     36
     37= 1.2.5 2025-01-21 =
     38
     39*Fixed: "Compatibility Fix for PHP 8.1."
  • litcommerce/trunk/litcommerce.php

    r3224717 r3226563  
    33Plugin Name: LitCommerce
    44Description: Helps you easily integrate your WooCommerce store with LitCommerce.
    5 Version: 1.2.4
     5Version: 1.2.5
    66Author: LitCommerce
    77Author URI: https://litcommerce.com
     
    454454function get_litc_params($key)
    455455{
    456     $value = htmlspecialchars(filter_input(INPUT_GET, $key), ENT_QUOTES, 'UTF-8');
    457 
     456    $value = filter_input(INPUT_GET, $key, FILTER_SANITIZE_SPECIAL_CHARS);
    458457    if(!$value){
    459         $value = null;
     458        return null;
    460459    }
    461460    return $value;
  • litcommerce/trunk/readme.txt

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

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