mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 15:33:23 +01:00
fix PHP 8.4 Fatal error: Duplicate declaration of static variable $contact
This commit is contained in:
parent
ab9434ae45
commit
7be3530b9d
@ -128,6 +128,7 @@ class addressbook_contactform
|
||||
}
|
||||
}
|
||||
}
|
||||
static $contact = null;
|
||||
if (!is_array($content))
|
||||
{
|
||||
$preserv['tpl_form_name'] = $tpl_name;
|
||||
@ -143,11 +144,7 @@ class addressbook_contactform
|
||||
{
|
||||
if ($name[0] == '#') // custom field
|
||||
{
|
||||
static $contact;
|
||||
if (is_null($contact))
|
||||
{
|
||||
$contact = new Api\Contacts();
|
||||
}
|
||||
if (!isset($contact)) $contact = new Api\Contacts();
|
||||
$content['show']['custom'.$custom] = true;
|
||||
$content['customfield'][$custom] = $name;
|
||||
$content['customlabel'][$custom] = $contact->customfields[substr($name,1)]['label'];
|
||||
@ -178,8 +175,7 @@ class addressbook_contactform
|
||||
$preserv[$name]=$value;
|
||||
if ($name[0] == '#') // custom field
|
||||
{
|
||||
static $contact;
|
||||
if (is_null($contact)) $contact = new Api\Contacts();
|
||||
if (!isset($contact)) $contact = new Api\Contacts();
|
||||
$content['show']['custom'.$custom] = true;
|
||||
$content['customfield'][$custom] = $name;
|
||||
$content['customlabel'][$custom] = $contact->customfields[substr($name,1)]['label'];
|
||||
@ -234,4 +230,4 @@ class addressbook_contactform
|
||||
|
||||
return $tpl->exec($this->callback,$content,$sel_options,array(),$preserv);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user