aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-10-13 09:03:13 +0000
committerMario <mario@mariovavti.com>2020-10-13 09:03:13 +0000
commit45a5a0418983127edd5e726adf8b10cb45950cbd (patch)
treee3a0fb626b89fc494171c6a9dd3c08253b45f1b4 /include/network.php
parent08e7c7b249e123edaa81348e54180e89080de012 (diff)
downloadvolse-hubzilla-45a5a0418983127edd5e726adf8b10cb45950cbd.tar.gz
volse-hubzilla-45a5a0418983127edd5e726adf8b10cb45950cbd.tar.bz2
volse-hubzilla-45a5a0418983127edd5e726adf8b10cb45950cbd.zip
do not overwrite $x variable
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php6
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'];
}
}
}