Changeset 2285858
- Timestamp:
- 04/17/2020 04:39:40 PM (6 years ago)
- Location:
- limit-orders
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.2 (copied) (copied from limit-orders/trunk)
-
tags/1.1.2/limit-orders.php (modified) (1 diff)
-
tags/1.1.2/readme.txt (modified) (3 diffs)
-
tags/1.1.2/src/OrderLimiter.php (modified) (1 diff)
-
trunk/limit-orders.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/OrderLimiter.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
limit-orders/tags/1.1.2/limit-orders.php
r2285087 r2285858 7 7 * Text Domain: limit-orders 8 8 * Domain Path: /languages 9 * Version: 1.1. 19 * Version: 1.1.2 10 10 * 11 11 * WC requires at least: 3.9 -
limit-orders/tags/1.1.2/readme.txt
r2285087 r2285858 5 5 Tested up to: 5.4 6 6 Requires PHP: 7.0 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 License: MIT 9 9 License URI: https://github.com/nexcess/limit-orders/blob/master/LICENSE.txt … … 46 46 For a complete list of changes, please [see the plugin's changelog on GitHub](https://github.com/nexcess/limit-orders/blob/master/CHANGELOG.md). 47 47 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 48 51 = 1.1.1 (2020-04-16) = 49 52 * Prevent errors from occurring in WP Admin due to the customer-facing notice … … 57 60 == Upgrade Notice == 58 61 62 = 1.1.2 = 63 Fixes error that was preventing order limiting from working on stores with limits higher than 10. 64 59 65 = 1.1.1 = 60 66 Fixes errors in WP Admin after a store's order limit has been reached. -
limit-orders/tags/1.1.2/src/OrderLimiter.php
r2285087 r2285858 324 324 'date_created' => '>=' . $this->get_interval_start()->getTimestamp(), 325 325 'return' => 'ids', 326 'limit' => max( $this->get_limit(), 1000 ), 326 327 ] ); 327 328 -
limit-orders/trunk/limit-orders.php
r2285087 r2285858 7 7 * Text Domain: limit-orders 8 8 * Domain Path: /languages 9 * Version: 1.1. 19 * Version: 1.1.2 10 10 * 11 11 * WC requires at least: 3.9 -
limit-orders/trunk/readme.txt
r2285087 r2285858 5 5 Tested up to: 5.4 6 6 Requires PHP: 7.0 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 License: MIT 9 9 License URI: https://github.com/nexcess/limit-orders/blob/master/LICENSE.txt … … 46 46 For a complete list of changes, please [see the plugin's changelog on GitHub](https://github.com/nexcess/limit-orders/blob/master/CHANGELOG.md). 47 47 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 48 51 = 1.1.1 (2020-04-16) = 49 52 * Prevent errors from occurring in WP Admin due to the customer-facing notice … … 57 60 == Upgrade Notice == 58 61 62 = 1.1.2 = 63 Fixes error that was preventing order limiting from working on stores with limits higher than 10. 64 59 65 = 1.1.1 = 60 66 Fixes errors in WP Admin after a store's order limit has been reached. -
limit-orders/trunk/src/OrderLimiter.php
r2285087 r2285858 324 324 'date_created' => '>=' . $this->get_interval_start()->getTimestamp(), 325 325 'return' => 'ids', 326 'limit' => max( $this->get_limit(), 1000 ), 326 327 ] ); 327 328
Note: See TracChangeset
for help on using the changeset viewer.