diff options
author | Mario <mario@mariovavti.com> | 2020-10-13 09:03:13 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-10-13 09:03:13 +0000 |
commit | 45a5a0418983127edd5e726adf8b10cb45950cbd (patch) | |
tree | e3a0fb626b89fc494171c6a9dd3c08253b45f1b4 /include | |
parent | 08e7c7b249e123edaa81348e54180e89080de012 (diff) | |
download | volse-hubzilla-45a5a0418983127edd5e726adf8b10cb45950cbd.tar.gz volse-hubzilla-45a5a0418983127edd5e726adf8b10cb45950cbd.tar.bz2 volse-hubzilla-45a5a0418983127edd5e726adf8b10cb45950cbd.zip |
do not overwrite $x variable
Diffstat (limited to 'include')
-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']; } } } |