mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
fix array_key_exists() expects exactly 2 arguments, 1 given
This commit is contained in:
parent
f0455b2ad2
commit
045d034891
@ -95,10 +95,10 @@ class addressbook_wizard_import_vcard extends addressbook_import_vcard
|
||||
{
|
||||
$content['title'] = $this->steps['wizard_step60'];
|
||||
$content['step'] = 'wizard_step60';
|
||||
if(!array_key_exists($content['contact_owner']) && $content['plugin_options']) {
|
||||
if (!array_key_exists('contact_owner', $content) && $content['plugin_options']) {
|
||||
$content['contact_owner'] = $content['plugin_options']['contact_owner'];
|
||||
}
|
||||
if(!array_key_exists($content['change_owner']) && $content['plugin_options']) {
|
||||
if(!array_key_exists('change_owner', $content) && $content['plugin_options']) {
|
||||
$content['change_owner'] = $content['plugin_options']['change_owner'];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user