Changeset 3226563
- Timestamp:
- 01/22/2025 01:54:05 AM (14 months ago)
- Location:
- litcommerce/trunk
- Files:
-
- 2 added
- 4 edited
-
changelog.txt (modified) (1 diff)
-
images (added)
-
images/logo.png (added)
-
litcommerce.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
steps/SendWooCommerceKeys.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
litcommerce/trunk/changelog.txt
r3224717 r3226563 34 34 35 35 *Fixed: "Replaced deprecated FILTER_SANITIZE_STRING with modern sanitization methods for PHP 7.4+ compatibility." 36 37 = 1.2.5 2025-01-21 = 38 39 *Fixed: "Compatibility Fix for PHP 8.1." -
litcommerce/trunk/litcommerce.php
r3224717 r3226563 3 3 Plugin Name: LitCommerce 4 4 Description: Helps you easily integrate your WooCommerce store with LitCommerce. 5 Version: 1.2. 45 Version: 1.2.5 6 6 Author: LitCommerce 7 7 Author URI: https://litcommerce.com … … 454 454 function get_litc_params($key) 455 455 { 456 $value = htmlspecialchars(filter_input(INPUT_GET, $key), ENT_QUOTES, 'UTF-8'); 457 456 $value = filter_input(INPUT_GET, $key, FILTER_SANITIZE_SPECIAL_CHARS); 458 457 if(!$value){ 459 $value =null;458 return null; 460 459 } 461 460 return $value; -
litcommerce/trunk/readme.txt
r3224717 r3226563 4 4 Tags: WooCommerce, Amazon, eBay, Etsy, TikTok 5 5 Tested up to: 6.7.1 6 Stable tag: 1.2. 46 Stable tag: 1.2.5 7 7 License: GPL-2.0 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
litcommerce/trunk/steps/SendWooCommerceKeys.php
r3224717 r3226563 27 27 $url .= '&channel_url=' . urlencode( site_url() ); 28 28 $url .= '&from_app=marketplace'; 29 $url .= '&version_plugin=1.2. 4';29 $url .= '&version_plugin=1.2.5'; 30 30 31 31 if(@$_GET['reconnect'] == 1){
Note: See TracChangeset
for help on using the changeset viewer.