Plugin Directory

Changeset 2285858


Ignore:
Timestamp:
04/17/2020 04:39:40 PM (6 years ago)
Author:
nexcess
Message:

Update to version 1.1.2 from GitHub

Location:
limit-orders
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • limit-orders/tags/1.1.2/limit-orders.php

    r2285087 r2285858  
    77 * Text Domain: limit-orders
    88 * Domain Path: /languages
    9  * Version:     1.1.1
     9 * Version:     1.1.2
    1010 *
    1111 * WC requires at least: 3.9
  • limit-orders/tags/1.1.2/readme.txt

    r2285087 r2285858  
    55Tested up to: 5.4
    66Requires PHP: 7.0
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88License: MIT
    99License URI: https://github.com/nexcess/limit-orders/blob/master/LICENSE.txt
     
    4646For a complete list of changes, please [see the plugin's changelog on GitHub](https://github.com/nexcess/limit-orders/blob/master/CHANGELOG.md).
    4747
     48= 1.1.2 (2020-04-17) =
     49* Override WordPress' default "LIMIT" on queries, which was preventing stores with limits > 10 from stopping orders
     50
    4851= 1.1.1 (2020-04-16) =
    4952* Prevent errors from occurring in WP Admin due to the customer-facing notice
     
    5760== Upgrade Notice ==
    5861
     62= 1.1.2 =
     63Fixes error that was preventing order limiting from working on stores with limits higher than 10.
     64
    5965= 1.1.1 =
    6066Fixes errors in WP Admin after a store's order limit has been reached.
  • limit-orders/tags/1.1.2/src/OrderLimiter.php

    r2285087 r2285858  
    324324            'date_created' => '>=' . $this->get_interval_start()->getTimestamp(),
    325325            'return'       => 'ids',
     326            'limit'        => max( $this->get_limit(), 1000 ),
    326327        ] );
    327328
  • limit-orders/trunk/limit-orders.php

    r2285087 r2285858  
    77 * Text Domain: limit-orders
    88 * Domain Path: /languages
    9  * Version:     1.1.1
     9 * Version:     1.1.2
    1010 *
    1111 * WC requires at least: 3.9
  • limit-orders/trunk/readme.txt

    r2285087 r2285858  
    55Tested up to: 5.4
    66Requires PHP: 7.0
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88License: MIT
    99License URI: https://github.com/nexcess/limit-orders/blob/master/LICENSE.txt
     
    4646For a complete list of changes, please [see the plugin's changelog on GitHub](https://github.com/nexcess/limit-orders/blob/master/CHANGELOG.md).
    4747
     48= 1.1.2 (2020-04-17) =
     49* Override WordPress' default "LIMIT" on queries, which was preventing stores with limits > 10 from stopping orders
     50
    4851= 1.1.1 (2020-04-16) =
    4952* Prevent errors from occurring in WP Admin due to the customer-facing notice
     
    5760== Upgrade Notice ==
    5861
     62= 1.1.2 =
     63Fixes error that was preventing order limiting from working on stores with limits higher than 10.
     64
    5965= 1.1.1 =
    6066Fixes errors in WP Admin after a store's order limit has been reached.
  • limit-orders/trunk/src/OrderLimiter.php

    r2285087 r2285858  
    324324            'date_created' => '>=' . $this->get_interval_start()->getTimestamp(),
    325325            'return'       => 'ids',
     326            'limit'        => max( $this->get_limit(), 1000 ),
    326327        ] );
    327328
Note: See TracChangeset for help on using the changeset viewer.