mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Fix: "Undefined property: stdClass::$personal"
This commit is contained in:
parent
6e0118f3fe
commit
642c55ee3e
1 changed files with 2 additions and 2 deletions
|
@ -2000,8 +2000,8 @@ class Probe
|
|||
if (isset($adr)) {
|
||||
foreach ($adr as $feadr) {
|
||||
if ((strcasecmp($feadr->mailbox, $data['name']) == 0)
|
||||
&&(strcasecmp($feadr->host, $phost) == 0)
|
||||
&& (strlen($feadr->personal))
|
||||
&& (strcasecmp($feadr->host, $phost) == 0)
|
||||
&& !empty($feadr->personal)
|
||||
) {
|
||||
$personal = imap_mime_header_decode($feadr->personal);
|
||||
$data['name'] = '';
|
||||
|
|
Loading…
Reference in a new issue