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

Add selection of client roles: fix empty prop error

This commit is contained in:
Бараников Максим 2020-08-10 11:03:35 +03:00
parent 3ee2eed974
commit 70a1ebd84c

View file

@ -623,7 +623,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
public function isCustomer($user)
{
$retailcrmSettings = array();
if (array_key_exists('client_roles', $this->retailcrm_settings)) {
if (!empty($this->retailcrm_settings) && array_key_exists('client_roles', $this->retailcrm_settings)) {
$retailcrmSettings = $this->retailcrm_settings['client_roles'];
}