php 5.4 fix in isCorporateOrder
This commit is contained in:
parent
056b90d72e
commit
2ab211ffb1
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue