Fix woocommerce_order_add_product deprecation msg

This commit is contained in:
Brent Shepherd 2017-01-26 16:58:47 -08:00
parent 5e77311384
commit 0e393da2cd
1 changed files with 1 additions and 1 deletions

View File

@ -890,7 +890,7 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order {
$item->set_order_id( $this->get_id() );
$item->save();
$this->add_item( $item );
wc_do_deprecated_action( 'woocommerce_order_add_product', array( $this->get_id(), $item->get_id(), $product, $qty, $args ), '2.7', 'Use woocommerce_new_order_item action instead.' );
wc_do_deprecated_action( 'woocommerce_order_add_product', array( $this->get_id(), $item->get_id(), $product, $qty, $args ), '2.7', 'woocommerce_new_order_item action instead' );
return $item->get_id();
}