Plugin Directory

Changeset 3327793


Ignore:
Timestamp:
07/14/2025 07:54:48 PM (7 months ago)
Author:
Arfa__
Message:

2.12.17

Fixed transient PHP warning when loading subscription info.

Location:
fast-ebay-listings/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • fast-ebay-listings/trunk/changelog.txt

    r3267242 r3327793  
    11== Changelog ==
     2
     3= 2.12.17 =
     4Fixed transient PHP warning when loading subscription info.
    25
    36= 2.12.16 =
  • fast-ebay-listings/trunk/constants.php

    r3267242 r3327793  
    55
    66define("FUBABY_EBAY_PLUGIN_TITLE", "Fast eBay Listings");
    7 define("FUBABY_EBAY_PLUGIN_VER", "2.12.16");
     7define("FUBABY_EBAY_PLUGIN_VER", "2.12.17");
    88define("FUBABY_EBAY_PLUGIN_WEBSITE", "https://www.fubaby.com/wordpress-plugins/fast-ebay-listings/");
    99define("FUBABY_EBAY_DEFAULTCAMPID", "5336840255");
  • fast-ebay-listings/trunk/fast-ebay-listings.php

    r3267242 r3327793  
    44 * Plugin URI: http://www.fubaby.com/wordpress-plugins/fast-ebay-listings/
    55 * Description: Display eBay auctions on your site, through the use of Blocks, Shortcodes and Widgets.
    6  * Version: 2.12.16
     6 * Version: 2.12.17
    77 * Requires at least: 5.0
    88 * Requires PHP: 7.4
  • fast-ebay-listings/trunk/includes/apicall.inc.php

    r3144949 r3327793  
    295295      $timeStart = microtime(true);
    296296      $remoteGetResp = wp_remote_get($this->requestUri);
    297       $this->respStatusCode = wp_remote_retrieve_response_code($remoteGetResp);
     297      $this->respStatusCode = (int)wp_remote_retrieve_response_code($remoteGetResp);
    298298      $respRaw = wp_remote_retrieve_body($remoteGetResp);
    299299
  • fast-ebay-listings/trunk/readme.txt

    r3267242 r3327793  
    66Tags: ebay, integrate, feedback, ebay partner network, affiliate marketing
    77Requires at least: 5.0
    8 Tested up to: 6.7
     8Tested up to: 6.8
    99Requires PHP: 7.4
    10 Stable tag: 2.12.16
     10Stable tag: 2.12.17
    1111License: GPLv2 or later
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    244244== Changelog ==
    245245
     246= 2.12.17 =
     247Fixed transient PHP warning when loading subscription info.
     248
    246249= 2.12.16 =
    247250Fixed minor security vulnerability.
Note: See TracChangeset for help on using the changeset viewer.