diff options
author | Mario <mario@mariovavti.com> | 2024-01-14 08:10:27 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-14 08:10:27 +0000 |
commit | 9d3b852d380760fa6e05491df1fd9b1e02fdf7d2 (patch) | |
tree | e76b8eff2572d993a7336d08f8c9a13881d5fbe1 /Zotlabs/Lib/Libzot.php | |
parent | fadb0a5bf24199475f01f893c8892f5bba495bab (diff) | |
download | volse-hubzilla-9d3b852d380760fa6e05491df1fd9b1e02fdf7d2.tar.gz volse-hubzilla-9d3b852d380760fa6e05491df1fd9b1e02fdf7d2.tar.bz2 volse-hubzilla-9d3b852d380760fa6e05491df1fd9b1e02fdf7d2.zip |
fix wrong array key
Diffstat (limited to 'Zotlabs/Lib/Libzot.php')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 41c091fb6..0d11704f1 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -777,7 +777,7 @@ class Libzot { intval($arr['public_forum']), dbesc(escape_tags($arr['primary_location']['address'])), dbesc(escape_tags($arr['primary_location']['url'])), - dbesc($arr['xchan_epubkey'] ?? ''), + dbesc($arr['ed25519_key'] ?? ''), dbesc($xchan_hash) ); |