From 6477c24919eb969d80324cf29129213f2fb8a0ea Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 6 Jun 2012 23:10:32 -0700 Subject: [PATCH] more logging on subscribe_to_hub --- include/items.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 4513db1dbb..66e219ddf2 100755 --- a/include/items.php +++ b/include/items.php @@ -2777,6 +2777,8 @@ function lose_sharer($importer,$contact,$datarray,$item) { function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') { + $a = get_app(); + if(is_array($importer)) { $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer['uid']) @@ -2807,7 +2809,10 @@ function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') { ); } - post_url($url,$params); + post_url($url,$params); + + logger('subscribe_to_hub: returns: ' . $a->get_curl_code(), LOGGER_DEBUG); + return; }