Plugin Directory

Changeset 2669579


Ignore:
Timestamp:
01/31/2022 07:01:46 AM (4 years ago)
Author:
codisto
Message:

http://plugins.svn.wordpress.org/codistoconnect/tags/1.3.64

Location:
codistoconnect/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • codistoconnect/trunk/changelog.txt

    r2588898 r2669579  
    11*** WooCommerce Google, Amazon & eBay Integration - Channel Cloud by Codisto ***
     2
     32022-01-31 - version 1.3.64
     4* Fix - filter template file names
     5* Update - WooCommerce tested up to 6.1.1
     6* Update - WordPress tested up to 5.9
    27
    382021-08-26 - version 1.3.63
  • codistoconnect/trunk/connect.php

    r2588898 r2669579  
    66 * Author: Codisto
    77 * Author URI: https://codisto.com/
    8  * Version: 1.3.63
     8 * Version: 1.3.64
    99 * Text Domain: codisto-linq
    1010 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2
    1111 * WC requires at least: 2.0.0
    12  * WC tested up to: 5.5.2
     12 * WC tested up to: 6.1.1
    1313 * License: GPLv2
    1414 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1515 *
    1616 * @package Codisto LINQ by Codisto
    17  * @version 1.3.63
     17 * @version 1.3.64
    1818 */
    1919
     
    2222}
    2323
    24 define( 'CODISTOCONNECT_VERSION', '1.3.63' );
     24define( 'CODISTOCONNECT_VERSION', '1.3.64' );
    2525define( 'CODISTOCONNECT_RESELLERKEY', '' );
    2626
     
    26472647
    26482648        $filename = wp_unslash( $_POST['file'] );
     2649        $filename = preg_replace('/[^ -~]+|[\\/:"*?<>|]+/', '', $filename);
     2650
    26492651        $content = wp_unslash( $_POST['newcontent'] );
    26502652
  • codistoconnect/trunk/readme.txt

    r2588898 r2669579  
    33Tags: ecommerce, e-commerce, woocommerce, ebay, amazon, paypal, integration, multi-channel, listings, store, sales, sell, shop
    44Requires at least: 4.0
    5 Tested up to: 5.8
    6 Stable tag: 1.3.63
     5Tested up to: 5.9
     6Stable tag: 1.3.64
    77Requires PHP: 5.6
    88License: GPLv2
     
    243243== Changelog ==
    244244
     245= 1.3.64 - 31/01/2022 =
     246* Fix - filter template file names
     247* Update - WordPress tested up to 5.9
     248
    245249= 1.3.63 - 26/08/2021 =
    246250* Fix - stop errors when creating orders in some scenarios
  • codistoconnect/trunk/templates.php

    r2132499 r2669579  
    1212
    1313    $filename = wp_unslash( $_GET['file'] );
     14    $filename = preg_replace('/[^ -~]+|[\\/:"*?<>|]+/', '', $filename);
    1415
    1516} else {
Note: See TracChangeset for help on using the changeset viewer.