mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-13 03:23:18 +03:00
FIX Providers API incorrect array_key_exists
- `array_key_exists` should search for they key `working_plan` within `$provider['settings']` and not `$provider['settings']['working_plan']`
This commit is contained in:
parent
3a6f347246
commit
a17c234698
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ class Providers extends API_V1_Controller {
|
|||
throw new Exception('No settings property provided.');
|
||||
}
|
||||
|
||||
if ( ! array_key_exists('working_plan', $provider['settings']['working_plan']))
|
||||
if ( ! array_key_exists('working_plan', $provider['settings']))
|
||||
{
|
||||
$provider['settings']['working_plan'] = $this->settings_model->get_setting('company_working_plan');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue