Changeset 3267242
- Timestamp:
- 04/05/2025 12:16:53 PM (11 months ago)
- Location:
- fast-ebay-listings/trunk
- Files:
-
- 5 edited
-
changelog.txt (modified) (1 diff)
-
constants.php (modified) (2 diffs)
-
fast-ebay-listings.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
utilities.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fast-ebay-listings/trunk/changelog.txt
r3260032 r3267242 1 1 == Changelog == 2 3 = 2.12.16 = 4 Fixed minor security vulnerability. 2 5 3 6 = 2.12.15 = -
fast-ebay-listings/trunk/constants.php
r3260032 r3267242 5 5 6 6 define("FUBABY_EBAY_PLUGIN_TITLE", "Fast eBay Listings"); 7 define("FUBABY_EBAY_PLUGIN_VER", "2.12.1 5");7 define("FUBABY_EBAY_PLUGIN_VER", "2.12.16"); 8 8 define("FUBABY_EBAY_PLUGIN_WEBSITE", "https://www.fubaby.com/wordpress-plugins/fast-ebay-listings/"); 9 9 define("FUBABY_EBAY_DEFAULTCAMPID", "5336840255"); … … 13 13 define("FUBABY_EBAY_CALLCACHEEXPIRYFEEDBACK", 1440); // minutes (1 day) 14 14 define("FUBABY_EBAY_CALLCACHEEXPIRYDYNSEARCH", 2880); // minutes (2 days) 15 define("FUBABY_EBAY_GOTOQUERYPARAM", "goto_ebay");16 15 define("FUBABY_EBAY_COUNTRYQUERYPARAM", "ebay_country"); 17 16 define("FUBABY_EBAY_BINLOGOIMG", "/images/bin_15x54.gif"); -
fast-ebay-listings/trunk/fast-ebay-listings.php
r3260032 r3267242 4 4 * Plugin URI: http://www.fubaby.com/wordpress-plugins/fast-ebay-listings/ 5 5 * Description: Display eBay auctions on your site, through the use of Blocks, Shortcodes and Widgets. 6 * Version: 2.12.1 56 * Version: 2.12.16 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 7.4 -
fast-ebay-listings/trunk/readme.txt
r3260032 r3267242 8 8 Tested up to: 6.7 9 9 Requires PHP: 7.4 10 Stable tag: 2.12.1 510 Stable tag: 2.12.16 11 11 License: GPLv2 or later 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 244 244 == Changelog == 245 245 246 = 2.12.16 = 247 Fixed minor security vulnerability. 248 246 249 = 2.12.15 = 247 250 Fixed bug in Rich Snippet structured data. -
fast-ebay-listings/trunk/utilities.php
r3237345 r3267242 356 356 357 357 //////////////////////////////////////////////////////////////////////////////////////////////////////// 358 // Handle goto_ebay redirections359 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 ////////////////////////////////////////////////////////////////////////////////////////////////////////376 358 // Other utility methods 377 359
Note: See TracChangeset
for help on using the changeset viewer.