aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-02-22 20:59:24 -0800
committerfriendica <info@friendica.com>2015-02-22 20:59:24 -0800
commitd0e7fc76cd112dde0947540c84274358d8f84560 (patch)
tree8225362dd32a390b7bc1769331b07f14e44d16db /include
parente1cf396feba2fe33ea992570b1d90edaaeb87ad5 (diff)
downloadvolse-hubzilla-d0e7fc76cd112dde0947540c84274358d8f84560.tar.gz
volse-hubzilla-d0e7fc76cd112dde0947540c84274358d8f84560.tar.bz2
volse-hubzilla-d0e7fc76cd112dde0947540c84274358d8f84560.zip
no longer needed
Diffstat (limited to 'include')
-rw-r--r--include/fixd.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/fixd.php b/include/fixd.php
deleted file mode 100644
index bce5eb348..000000000
--- a/include/fixd.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
- require_once('include/cli_startup.php');
-
- cli_startup();
-
- $rand = db_getfunc('RAND');
- $r = q("select xchan_addr, hubloc_url from xchan left join hubloc on hubloc_hash = xchan_hash where xchan_network like '%%diaspora%%' order by $rand");
-
- if(! $r)
- killme();
-
- require_once('include/network.php');
- $total = 0;
- foreach ($r as $rr) {
- if($rr['hubloc_url']) {
- continue;
- }
- $total ++;
- }
-
- print $total . "\n";
-
- foreach ($r as $rr) {
- if($rr['hubloc_url']) {
- continue;
- }
-
- $webbie = $rr['xchan_addr'];
- print $webbie . ' ';
-
- discover_by_webbie($webbie);
- }