Add selection of client roles: fix empty prop error
This commit is contained in:
parent
3ee2eed974
commit
70a1ebd84c
1 changed files with 1 additions and 1 deletions
|
@ -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'];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue