Plugin Directory

Changeset 3267242


Ignore:
Timestamp:
04/05/2025 12:16:53 PM (11 months ago)
Author:
Arfa__
Message:

2.12.16

Fixed minor security vulnerability.

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

Legend:

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

    r3260032 r3267242  
    11== Changelog ==
     2
     3= 2.12.16 =
     4Fixed minor security vulnerability.
    25
    36= 2.12.15 =
  • fast-ebay-listings/trunk/constants.php

    r3260032 r3267242  
    55
    66define("FUBABY_EBAY_PLUGIN_TITLE", "Fast eBay Listings");
    7 define("FUBABY_EBAY_PLUGIN_VER", "2.12.15");
     7define("FUBABY_EBAY_PLUGIN_VER", "2.12.16");
    88define("FUBABY_EBAY_PLUGIN_WEBSITE", "https://www.fubaby.com/wordpress-plugins/fast-ebay-listings/");
    99define("FUBABY_EBAY_DEFAULTCAMPID", "5336840255");
     
    1313define("FUBABY_EBAY_CALLCACHEEXPIRYFEEDBACK", 1440); // minutes (1 day)
    1414define("FUBABY_EBAY_CALLCACHEEXPIRYDYNSEARCH", 2880); // minutes (2 days)
    15 define("FUBABY_EBAY_GOTOQUERYPARAM", "goto_ebay");
    1615define("FUBABY_EBAY_COUNTRYQUERYPARAM", "ebay_country");
    1716define("FUBABY_EBAY_BINLOGOIMG", "/images/bin_15x54.gif");
  • fast-ebay-listings/trunk/fast-ebay-listings.php

    r3260032 r3267242  
    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.15
     6 * Version: 2.12.16
    77 * Requires at least: 5.0
    88 * Requires PHP: 7.4
  • fast-ebay-listings/trunk/readme.txt

    r3260032 r3267242  
    88Tested up to: 6.7
    99Requires PHP: 7.4
    10 Stable tag: 2.12.15
     10Stable tag: 2.12.16
    1111License: GPLv2 or later
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    244244== Changelog ==
    245245
     246= 2.12.16 =
     247Fixed minor security vulnerability.
     248
    246249= 2.12.15 =
    247250Fixed bug in Rich Snippet structured data.
  • fast-ebay-listings/trunk/utilities.php

    r3237345 r3267242  
    356356
    357357////////////////////////////////////////////////////////////////////////////////////////////////////////
    358 // Handle goto_ebay redirections
    359 function fu_ebay_init_redirect()
    360 {
    361   if (isset($_REQUEST[FUBABY_EBAY_GOTOQUERYPARAM]) && !empty($_REQUEST[FUBABY_EBAY_GOTOQUERYPARAM]))
    362   {     
    363     $gotoUrl = $_REQUEST[FUBABY_EBAY_GOTOQUERYPARAM]; /* Get the "encrypted" url passed from the affiliate link */
    364     $gotoUrl = base64_decode($gotoUrl);
    365     header("Cache-Control: no-cache, must-revalidate");
    366     header("X-Robots-Tag: noindex, nofollow");
    367     header("Location: $gotoUrl", TRUE, 301);   /* Redirect browser to the new address */
    368     exit;
    369   }
    370 }
    371 add_action('init', 'fu_ebay_init_redirect');
    372 
    373 
    374 
    375 ////////////////////////////////////////////////////////////////////////////////////////////////////////
    376358// Other utility methods
    377359
Note: See TracChangeset for help on using the changeset viewer.