diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-15 01:24:55 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-15 01:24:55 -0700 |
commit | 93f5cc1e609611d030c3e0480291ac6f70d22487 (patch) | |
tree | ce994c770bda8c01e2339ff7d071639878c15b53 | |
parent | 68a503049b5ffd7c61d0c71a829a9c1eb6fb8165 (diff) | |
download | volse-hubzilla-93f5cc1e609611d030c3e0480291ac6f70d22487.tar.gz volse-hubzilla-93f5cc1e609611d030c3e0480291ac6f70d22487.tar.bz2 volse-hubzilla-93f5cc1e609611d030c3e0480291ac6f70d22487.zip |
I'm not going to tell you what's wrong because I'll be accused of bashing another project. I'll let you read the logs and figure it out for yourself. Follow the trail of evidence and you'll discover the truth.
-rw-r--r-- | mod/hostxrd.php | 1 | ||||
-rw-r--r-- | mod/wfinger.php | 2 | ||||
-rw-r--r-- | mod/xrd.php | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/mod/hostxrd.php b/mod/hostxrd.php index ef86f2dd9..24bd7b048 100644 --- a/mod/hostxrd.php +++ b/mod/hostxrd.php @@ -3,6 +3,7 @@ function hostxrd_init(&$a) { header('Access-Control-Allow-Origin: *'); header("Content-type: text/xml"); + logger('hostxrd',LOGGER_DEBUG); $tpl = get_markup_template('xrd_host.tpl'); $x = replace_macros(get_markup_template('xrd_host.tpl'), array( diff --git a/mod/wfinger.php b/mod/wfinger.php index 1493dd6ba..c61a97b30 100644 --- a/mod/wfinger.php +++ b/mod/wfinger.php @@ -19,7 +19,7 @@ function wfinger_init(&$a) { } $resource = $_REQUEST['resource']; - + logger('webfinger: ' . $resource,LOGGER_DEBUG); $r = null; diff --git a/mod/xrd.php b/mod/xrd.php index d547194ad..a3a73dc4f 100644 --- a/mod/xrd.php +++ b/mod/xrd.php @@ -5,6 +5,7 @@ require_once('include/crypto.php'); function xrd_init(&$a) { $uri = urldecode(notags(trim($_GET['uri']))); + logger('xrd: ' . $uri,LOGGER_DEBUG); if(substr($uri,0,4) === 'http') $name = basename($uri); |