diff options
author | gia vec <giavec@protonmail.com> | 2018-07-29 17:19:37 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-07-30 09:48:24 +0200 |
commit | 149071bf0cb5f59d5462cd1857f8d95f3daa72cb (patch) | |
tree | 2c0b8aa94745d140d5dc94fabe352ec65844ccb2 /include/network.php | |
parent | e4a1286aae411023210628d3be306420f7844d22 (diff) | |
download | volse-hubzilla-149071bf0cb5f59d5462cd1857f8d95f3daa72cb.tar.gz volse-hubzilla-149071bf0cb5f59d5462cd1857f8d95f3daa72cb.tar.bz2 volse-hubzilla-149071bf0cb5f59d5462cd1857f8d95f3daa72cb.zip |
Update network.php
(cherry picked from commit 8db006d9a1b3401f79ad0458e3a2ebae64c3575c)
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/network.php b/include/network.php index 0d37db58d..6961bf0ba 100644 --- a/include/network.php +++ b/include/network.php @@ -1937,7 +1937,7 @@ function scrape_vcard($url) { if(attribute_contains($x->getAttribute('class'),'given_name')) $ret['given_name'] = escape_tags($x->textContent); if(attribute_contains($x->getAttribute('class'),'family_name')) - $ret['family_name'] = escxape_tags($x->textContent); + $ret['family_name'] = escape_tags($x->textContent); if(attribute_contains($x->getAttribute('class'),'url')) $ret['url'] = escape_tags($x->textContent); |