diff options
author | Mario <mario@mariovavti.com> | 2020-10-13 09:20:16 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-10-13 09:20:16 +0000 |
commit | 89c74868aa48b97a88865e3385f7fccd6912d761 (patch) | |
tree | 59952c99f38c1d34ebcd9117e462c00950da5f05 | |
parent | 1f41b1837f5b8722b198ea808637108a83ff7f20 (diff) | |
parent | 45a5a0418983127edd5e726adf8b10cb45950cbd (diff) | |
download | volse-hubzilla-89c74868aa48b97a88865e3385f7fccd6912d761.tar.gz volse-hubzilla-89c74868aa48b97a88865e3385f7fccd6912d761.tar.bz2 volse-hubzilla-89c74868aa48b97a88865e3385f7fccd6912d761.zip |
Merge branch 'dev' into 5.0RC
-rw-r--r-- | include/network.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/network.php b/include/network.php index 750d56ac3..4457f59bc 100644 --- a/include/network.php +++ b/include/network.php @@ -1120,9 +1120,9 @@ function discover_by_webbie($webbie, $protocol = '') { continue; } - $x = Libzot::import_xchan($record['data']); - if($x['success']) { - return $x['hash']; + $y = Libzot::import_xchan($record['data']); + if($y['success']) { + return $y['hash']; } } } |