diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-07-31 14:39:51 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-07-31 14:39:51 +0200 |
commit | 569cd6c57ce60a5262e92998c6ad8a68a486fa41 (patch) | |
tree | 18b687d6b9b531fe70a933e7fe5d6195e02b3412 /include | |
parent | e8aeecc4c9842d4c6b25f7b488ede9644afc5d78 (diff) | |
parent | 4e402dca7de0526b969c39d161fd715b9809ca96 (diff) | |
download | volse-hubzilla-569cd6c57ce60a5262e92998c6ad8a68a486fa41.tar.gz volse-hubzilla-569cd6c57ce60a5262e92998c6ad8a68a486fa41.tar.bz2 volse-hubzilla-569cd6c57ce60a5262e92998c6ad8a68a486fa41.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'include')
-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); |