Plugin Directory

Changeset 3224716


Ignore:
Timestamp:
01/18/2025 05:01:53 AM (12 months ago)
Author:
litcom
Message:

bug fixes

Location:
litcommerce-feed/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • litcommerce-feed/trunk/changelog.txt

    r3222112 r3224716  
     1= 1.0.1 2025-01-18 =
     2
     3*Fixed: "Replaced deprecated FILTER_SANITIZE_STRING with modern sanitization methods for PHP 7.4+ compatibility."
  • litcommerce-feed/trunk/litcommerce-feed.php

    r3222112 r3224716  
    33Plugin Name: LitCommerce: Product Feed Tool For WooCommerce
    44Description: Create & Optimize WooCommerce product feeds for Google Shopping, Bing, Facebook, Instagram, Pinterest, Snapchat, TikTok, and 2000+ other channels.
    5 Version: 1.0.0
     5Version: 1.0.1
    66Author: LitCommerce
    77Author URI: https://litcommerce.com
     
    281281function litcfeed_get_params($key)
    282282{
    283     $value = filter_input( INPUT_GET, $key, FILTER_SANITIZE_STRING );
     283    $value = htmlspecialchars(filter_input(INPUT_GET, $key), ENT_QUOTES, 'UTF-8');
     284
    284285    if(!$value){
    285286        $value = null;
  • litcommerce-feed/trunk/readme.txt

    r3222112 r3224716  
    44Tags: WooCommerce, Google Shopping, Facebook, Bing, Tiktok
    55Tested up to: 6.7
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPL-2.0
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • litcommerce-feed/trunk/steps/FeedSendWooCommerceKeys.php

    r3222112 r3224716  
    2727        $url     .= '&channel_url=' . urlencode( site_url() );
    2828        $url     .= '&from_app=feed';
     29        $url     .= '&version_plugin=1.0.1';
     30
    2931        $reconnect = filter_input( INPUT_GET, 'reconnect', FILTER_SANITIZE_NUMBER_INT );
    3032
Note: See TracChangeset for help on using the changeset viewer.