diff options
author | Wave <wave72@users.noreply.github.com> | 2016-07-22 10:55:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-22 10:55:02 +0200 |
commit | 744ad84714fe0f7a3d90250a4ff02dc4327b9061 (patch) | |
tree | 595fb74ec9ea0bc7130d18bd7993d719a222d343 /mod/xchan.php | |
parent | c38c79d71c8ef70ef649f83e322f1984b75ee2dd (diff) | |
parent | 7d897a3f03bd57ed556433eb84a41963ba44e02e (diff) | |
download | volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.tar.gz volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.tar.bz2 volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.zip |
Merge pull request #6 from redmatrix/dev
Dev
Diffstat (limited to 'mod/xchan.php')
-rw-r--r-- | mod/xchan.php | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/mod/xchan.php b/mod/xchan.php deleted file mode 100644 index 69fbdb77d..000000000 --- a/mod/xchan.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - - -function xchan_content(&$a) { - - $o = '<h3>' . t('Xchan Lookup') . '</h3>'; - - $o .= '<form action="xchan" method="get">'; - $o .= t('Lookup xchan beginning with (or webbie): '); - $o .= '<input type="text" style="width:250px;" name="addr" value="' . $_GET['addr'] .'">'; - $o .= '<input type="submit" name="submit" value="' . t('Submit') .'"></form>'; - $o .= '<br><br>'; - - if(x($_GET, 'addr')) { - $addr = trim($_GET['addr']); - - $r = q("select * from xchan where xchan_hash like '%s%%' or xchan_addr = '%s' group by xchan_hash", - dbesc($addr), - dbesc($addr) - ); - - if($r) { - foreach($r as $rr) { - $o .= str_replace(array("\n", " "), array("<br>", " "), print_r($rr, true)) . EOL; - - $s = q("select * from hubloc where hubloc_hash like '%s'", - dbesc($r[0]['xchan_hash']) - ); - - if($s) { - foreach($s as $rrr) - $o .= str_replace(array("\n", " "), array("<br>", " "), print_r($rrr, true)) . EOL; - } - } - } - else - notice( t('Not found.') . EOL); - - } - return $o; -} |