Change references to Woo 7.7 to 7.9
This commit is contained in:
parent
bb6645d4ac
commit
7e2b4ba17c
|
@ -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.
|
* 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
|
* @var bool
|
||||||
*/
|
*/
|
||||||
private $verify_parent_id = true;
|
private $verify_parent_id = true;
|
||||||
|
|
|
@ -232,8 +232,8 @@ class WC_Install {
|
||||||
'7.7.0' => array(
|
'7.7.0' => array(
|
||||||
'wc_update_770_remove_multichannel_marketing_feature_options',
|
'wc_update_770_remove_multichannel_marketing_feature_options',
|
||||||
),
|
),
|
||||||
'7.8.0' => array(
|
'7.9.0' => array(
|
||||||
'wc_update_780_delete_stray_order_records',
|
'wc_update_790_delete_stray_order_records',
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -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.
|
* Check if an order exists by id.
|
||||||
*
|
*
|
||||||
* @since 7.7.0
|
* @since 7.9.0
|
||||||
*
|
*
|
||||||
* @param int $order_id The order id to check.
|
* @param int $order_id The order id to check.
|
||||||
* @return bool True if an order exists with the given name.
|
* @return bool True if an order exists with the given name.
|
||||||
|
|
|
@ -2596,7 +2596,7 @@ function wc_update_770_remove_multichannel_marketing_feature_options() {
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function wc_update_780_delete_stray_order_records() {
|
function wc_update_790_delete_stray_order_records() {
|
||||||
global $wpdb;
|
global $wpdb;
|
||||||
|
|
||||||
$orders_table_name = OrdersTableDataStore::get_orders_table_name();
|
$orders_table_name = OrdersTableDataStore::get_orders_table_name();
|
||||||
|
|
Loading…
Reference in New Issue