1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

php 5.4 fix in isCorporateOrder

This commit is contained in:
Pavel 2020-04-08 16:31:02 +03:00
parent 056b90d72e
commit 2ab211ffb1

View file

@ -563,7 +563,9 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
*/
public static function isCorporateOrder($order)
{
return !empty($order->get_billing_company());
$billingCompany = $order->get_billing_company();
return !empty($billingCompany);
}
/**