diff options
author | Mario <mario@mariovavti.com> | 2022-08-21 18:21:05 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-08-21 18:21:05 +0000 |
commit | fdcae5274043ce23fd8f6721e0484bc731975430 (patch) | |
tree | ed0a17f1a1be8ecd6afcb4b52419bd105032f0cb /Zotlabs/Lib | |
parent | a8752844eff70e714fc8c5faaa3fdc62c95b7e04 (diff) | |
download | volse-hubzilla-fdcae5274043ce23fd8f6721e0484bc731975430.tar.gz volse-hubzilla-fdcae5274043ce23fd8f6721e0484bc731975430.tar.bz2 volse-hubzilla-fdcae5274043ce23fd8f6721e0484bc731975430.zip |
do not escape tags here since it will destroy additional query params
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 67cfeea79..caeb1db4b 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -1715,7 +1715,7 @@ class Activity { 'xchan_guid' => $url, 'xchan_pubkey' => escape_tags($pubkey), 'xchan_addr' => $webfinger_addr, - 'xchan_url' => escape_tags($profile), + 'xchan_url' => $profile, 'xchan_name' => escape_tags($name), 'xchan_name_date' => datetime_convert(), 'xchan_network' => 'activitypub' |