diff options
author | Mario <mario@mariovavti.com> | 2018-07-30 09:47:41 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-07-30 09:47:41 +0200 |
commit | 720e691f33e11a5b6ce7ffac14ac2e03ad5be2e9 (patch) | |
tree | eb59c9b8aa96fc2d680dd47690f98ea65421a034 | |
parent | d00761628fa7bb70cfa203dbd328cc5dfeb6c481 (diff) | |
parent | 8db006d9a1b3401f79ad0458e3a2ebae64c3575c (diff) | |
download | volse-hubzilla-720e691f33e11a5b6ce7ffac14ac2e03ad5be2e9.tar.gz volse-hubzilla-720e691f33e11a5b6ce7ffac14ac2e03ad5be2e9.tar.bz2 volse-hubzilla-720e691f33e11a5b6ce7ffac14ac2e03ad5be2e9.zip |
Merge branch 'patch-1' into 'master'
Update network.php
See merge request hubzilla/core!1248
-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); |