Plugin Directory

Changeset 3457707


Ignore:
Timestamp:
02/10/2026 07:14:27 AM (4 weeks ago)
Author:
rextheme
Message:

Tagging version 7.4.65

Location:
best-woocommerce-feed
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • best-woocommerce-feed/tags/7.4.65/README.txt

    r3449186 r3457707  
    77Tested up to:  6.9
    88Requires PHP: 7.4
    9 Stable tag:  7.4.64
     9Stable tag:  7.4.65
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    490490= Product feed manager (Free) =
    491491
     492
     493= 7.4.65 (2026-02-10) =
     494* Bug Fix: PHP Fatal Error caused by strpos() receiving an array instead of a string during feed updates
     495
    492496= 7.4.64 (2026-01-29) =
    493497* New: Feed Validator for OpenAI Commerce
     
    515519* Improvement: Enhanced OpenPanel integration to track feed settings
    516520
    517 = 7.4.60 (2025-12-31) =
    518 * Improvement: Google content API currency symbol
    519 * Improvement: Variations not included in custom feed during scheduled updates
    520521
    521522👉 [Visit to view full changelog for the free version](https://rextheme.com/changelog/?plugin=product-feed-manager-for-woocommerce)
  • best-woocommerce-feed/tags/7.4.65/admin/feed-validator/abstract-rex-feed-validator.php

    r3449186 r3457707  
    571571                $clean_value = $this->strip_cdata( $value );
    572572               
     573                // Ensure clean_value is a string before using strpos
     574                if ( ! is_string( $clean_value ) ) {
     575                    continue;
     576                }
     577
    573578                // Skip validation if CDATA markers are still present or if value is empty
    574579                if (strpos($clean_value, '<![CDATA[') === false && strpos($clean_value, ']]>') === false && !$this->is_empty_value($clean_value)) {
  • best-woocommerce-feed/tags/7.4.65/rex-product-feed.php

    r3449186 r3457707  
    1616 * Plugin URI:        https://rextheme.com
    1717 * Description:       Generate and maintain your WooCommerce product feed for Google Shopping, Social Catalogs, Yandex, Idealo, Vivino, Pinterest, eBay MIP, BestPrice, Skroutz, Fruugo, Bonanza & 200+ Merchants.
    18  * Version:           7.4.64
     18 * Version:           7.4.65
    1919 * Author:            RexTheme
    2020 * Author URI:        https://rextheme.com
     
    4141}
    4242if( !defined( 'WPFM_VERSION' ) ) {
    43     define( 'WPFM_VERSION', '7.4.64' );
     43    define( 'WPFM_VERSION', '7.4.65' );
    4444}
    4545if ( !defined( 'WPFM__FILE__' ) ) {
  • best-woocommerce-feed/tags/7.4.65/vendor/composer/installed.php

    r3449186 r3457707  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'f7e7dede4db3d577bbae15fe73dcec1549e79fed',
     6        'reference' => 'c912255e7e1659312e4f88caeae5895552bbc192',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4343            'pretty_version' => 'dev-master',
    4444            'version' => 'dev-master',
    45             'reference' => 'f7e7dede4db3d577bbae15fe73dcec1549e79fed',
     45            'reference' => 'c912255e7e1659312e4f88caeae5895552bbc192',
    4646            'type' => 'wordpress-plugin',
    4747            'install_path' => __DIR__ . '/../../',
  • best-woocommerce-feed/trunk/README.txt

    r3449186 r3457707  
    77Tested up to:  6.9
    88Requires PHP: 7.4
    9 Stable tag:  7.4.64
     9Stable tag:  7.4.65
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    490490= Product feed manager (Free) =
    491491
     492
     493= 7.4.65 (2026-02-10) =
     494* Bug Fix: PHP Fatal Error caused by strpos() receiving an array instead of a string during feed updates
     495
    492496= 7.4.64 (2026-01-29) =
    493497* New: Feed Validator for OpenAI Commerce
     
    515519* Improvement: Enhanced OpenPanel integration to track feed settings
    516520
    517 = 7.4.60 (2025-12-31) =
    518 * Improvement: Google content API currency symbol
    519 * Improvement: Variations not included in custom feed during scheduled updates
    520521
    521522👉 [Visit to view full changelog for the free version](https://rextheme.com/changelog/?plugin=product-feed-manager-for-woocommerce)
  • best-woocommerce-feed/trunk/admin/feed-validator/abstract-rex-feed-validator.php

    r3449186 r3457707  
    571571                $clean_value = $this->strip_cdata( $value );
    572572               
     573                // Ensure clean_value is a string before using strpos
     574                if ( ! is_string( $clean_value ) ) {
     575                    continue;
     576                }
     577
    573578                // Skip validation if CDATA markers are still present or if value is empty
    574579                if (strpos($clean_value, '<![CDATA[') === false && strpos($clean_value, ']]>') === false && !$this->is_empty_value($clean_value)) {
  • best-woocommerce-feed/trunk/rex-product-feed.php

    r3449186 r3457707  
    1616 * Plugin URI:        https://rextheme.com
    1717 * Description:       Generate and maintain your WooCommerce product feed for Google Shopping, Social Catalogs, Yandex, Idealo, Vivino, Pinterest, eBay MIP, BestPrice, Skroutz, Fruugo, Bonanza & 200+ Merchants.
    18  * Version:           7.4.64
     18 * Version:           7.4.65
    1919 * Author:            RexTheme
    2020 * Author URI:        https://rextheme.com
     
    4141}
    4242if( !defined( 'WPFM_VERSION' ) ) {
    43     define( 'WPFM_VERSION', '7.4.64' );
     43    define( 'WPFM_VERSION', '7.4.65' );
    4444}
    4545if ( !defined( 'WPFM__FILE__' ) ) {
  • best-woocommerce-feed/trunk/vendor/composer/installed.php

    r3449186 r3457707  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'f7e7dede4db3d577bbae15fe73dcec1549e79fed',
     6        'reference' => 'c912255e7e1659312e4f88caeae5895552bbc192',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4343            'pretty_version' => 'dev-master',
    4444            'version' => 'dev-master',
    45             'reference' => 'f7e7dede4db3d577bbae15fe73dcec1549e79fed',
     45            'reference' => 'c912255e7e1659312e4f88caeae5895552bbc192',
    4646            'type' => 'wordpress-plugin',
    4747            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.