Change references to Woo 7.7 to 7.9

This commit is contained in:
Nestor Soriano 2023-05-26 11:13:53 +02:00
parent bb6645d4ac
commit 7e2b4ba17c
No known key found for this signature in database
GPG Key ID: 08110F3518C12CAD
4 changed files with 5 additions and 5 deletions

View File

@ -106,7 +106,7 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order {
/**
* Indicates if set_parent_id will throw an error if no order exists with the supplied id.
*
* @since 7.7.0
* @since 7.9.0
* @var bool
*/
private $verify_parent_id = true;

View File

@ -232,8 +232,8 @@ class WC_Install {
'7.7.0' => array(
'wc_update_770_remove_multichannel_marketing_feature_options',
),
'7.8.0' => array(
'wc_update_780_delete_stray_order_records',
'7.9.0' => array(
'wc_update_790_delete_stray_order_records',
),
);

View File

@ -109,7 +109,7 @@ abstract class Abstract_WC_Order_Data_Store_CPT extends WC_Data_Store_WP impleme
/**
* Check if an order exists by id.
*
* @since 7.7.0
* @since 7.9.0
*
* @param int $order_id The order id to check.
* @return bool True if an order exists with the given name.

View File

@ -2596,7 +2596,7 @@ function wc_update_770_remove_multichannel_marketing_feature_options() {
*
* @return void
*/
function wc_update_780_delete_stray_order_records() {
function wc_update_790_delete_stray_order_records() {
global $wpdb;
$orders_table_name = OrdersTableDataStore::get_orders_table_name();