diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-15 04:36:39 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-15 04:36:39 -0700 |
commit | a1d37b6cc42c7f50007fdf081c3b0def5daa4395 (patch) | |
tree | b260077ea91383ecb84a3d8ce8f78d6a019886d1 | |
parent | 35a9b49ed06c58b53f81cf5ef476191807157925 (diff) | |
download | volse-hubzilla-a1d37b6cc42c7f50007fdf081c3b0def5daa4395.tar.gz volse-hubzilla-a1d37b6cc42c7f50007fdf081c3b0def5daa4395.tar.bz2 volse-hubzilla-a1d37b6cc42c7f50007fdf081c3b0def5daa4395.zip |
add recipient url to pubsub instrumentation
-rw-r--r-- | mod/pubsub.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/pubsub.php b/mod/pubsub.php index 693fcbf81..b0157fbc3 100644 --- a/mod/pubsub.php +++ b/mod/pubsub.php @@ -89,7 +89,7 @@ function pubsub_post(&$a) { $xml = file_get_contents('php://input'); $debugging = get_config('system','debugging'); - $remote_host = 'Pubsub feed arrived from ' . $_SERVER['REMOTE_ADDR'] . ' at ' . datetime_convert() . "\n\n"; + $remote_host = 'Pubsub feed arrived from ' . $_SERVER['REMOTE_ADDR'] . ' at ' . datetime_convert() . ' for ' . $a->cmd . "\n\n"; if($debugging) file_put_contents('pubsub.out', $remote_host . $xml, FILE_APPEND); |