diff options
author | zotlabs <mike@macgirvin.com> | 2017-01-15 19:55:59 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-01-15 19:55:59 -0800 |
commit | 0ef2cd871956a45cf947e976c59b1d29744959b6 (patch) | |
tree | e475e533328c55a2293f86c8502ec5fee792f450 /include/connections.php | |
parent | c32bc9dda4dc08f2e4e72dc91c78457a0383244e (diff) | |
download | volse-hubzilla-0ef2cd871956a45cf947e976c59b1d29744959b6.tar.gz volse-hubzilla-0ef2cd871956a45cf947e976c59b1d29744959b6.tar.bz2 volse-hubzilla-0ef2cd871956a45cf947e976c59b1d29744959b6.zip |
array pointer in wrong place
Diffstat (limited to 'include/connections.php')
-rw-r--r-- | include/connections.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connections.php b/include/connections.php index 8daa008c9..def80441a 100644 --- a/include/connections.php +++ b/include/connections.php @@ -822,7 +822,7 @@ function get_vcard_array($vc,$id) { 'address' => $adr->getParts() ]; $last_entry = end($adrs); - array_walk($adrs[$last_entry],'array_escape_tags'); + array_walk($adrs[$last_entry]['address'],'array_escape_tags'); } } |