Plugin Directory

Changeset 3095206


Ignore:
Timestamp:
05/30/2024 02:12:43 PM (22 months ago)
Author:
setaryapp
Message:

Update to version 1.12.1 from GitHub

Location:
setary
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • setary/tags/1.12.1/README.md

    r3093936 r3095206  
    55Tested up to: 6.5.3
    66Requires PHP: 7.1
    7 Stable tag: 1.12.0
     7Stable tag: 1.12.1
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    9090
    9191== Changelog ==
     92
     93= v1.12.1 (2024-05-30) =
     94* [fix] Search SQL prefix
    9295
    9396= v1.12.0 (2024-05-28) =
  • setary/tags/1.12.1/inc/class-products-with-variations.php

    r3093936 r3095206  
    784784                    WHERE meta_key = '_sku' AND meta_value LIKE %s
    785785                )
    786                 AND wp_posts.post_type IN ('product', 'product_variation')
    787                 AND wp_posts.post_status NOT IN ('trash', 'auto-draft')
     786                AND {$wpdb->posts}.post_type IN ('product', 'product_variation')
     787                AND {$wpdb->posts}.post_status NOT IN ('trash', 'auto-draft')
    788788            ";
    789789
  • setary/tags/1.12.1/setary.php

    r3093936 r3095206  
    1111 * Author URI:           https://setary.com/
    1212 *
    13  * Version:              1.12.0
     13 * Version:              1.12.1
    1414 * WC requires at least: 6.0.0
    1515 * WC tested up to:      8.9.1
     
    2323define( 'SETARY_PATH', \plugin_dir_path( __FILE__ ) );
    2424define( 'SETARY_URL', \plugins_url( '/', __FILE__ ) );
    25 define( 'SETARY_VERSION', '1.12.0' );
     25define( 'SETARY_VERSION', '1.12.1' );
    2626define( 'SETARY_SITE_URL', 'https://setary.com/' );
    2727define( 'SETARY_APP_URL', 'https://setary.com/app/' );
  • setary/trunk/README.md

    r3093936 r3095206  
    55Tested up to: 6.5.3
    66Requires PHP: 7.1
    7 Stable tag: 1.12.0
     7Stable tag: 1.12.1
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    9090
    9191== Changelog ==
     92
     93= v1.12.1 (2024-05-30) =
     94* [fix] Search SQL prefix
    9295
    9396= v1.12.0 (2024-05-28) =
  • setary/trunk/inc/class-products-with-variations.php

    r3093936 r3095206  
    784784                    WHERE meta_key = '_sku' AND meta_value LIKE %s
    785785                )
    786                 AND wp_posts.post_type IN ('product', 'product_variation')
    787                 AND wp_posts.post_status NOT IN ('trash', 'auto-draft')
     786                AND {$wpdb->posts}.post_type IN ('product', 'product_variation')
     787                AND {$wpdb->posts}.post_status NOT IN ('trash', 'auto-draft')
    788788            ";
    789789
  • setary/trunk/setary.php

    r3093936 r3095206  
    1111 * Author URI:           https://setary.com/
    1212 *
    13  * Version:              1.12.0
     13 * Version:              1.12.1
    1414 * WC requires at least: 6.0.0
    1515 * WC tested up to:      8.9.1
     
    2323define( 'SETARY_PATH', \plugin_dir_path( __FILE__ ) );
    2424define( 'SETARY_URL', \plugins_url( '/', __FILE__ ) );
    25 define( 'SETARY_VERSION', '1.12.0' );
     25define( 'SETARY_VERSION', '1.12.1' );
    2626define( 'SETARY_SITE_URL', 'https://setary.com/' );
    2727define( 'SETARY_APP_URL', 'https://setary.com/app/' );
Note: See TracChangeset for help on using the changeset viewer.