From b5bcf44354410e2c37d5ec143c7050c3903200ed Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 4 Apr 2011 01:18:28 -0700 Subject: [PATCH] profile not set --- include/items.php | 2 +- include/poller.php | 3 ++- mod/dfrn_poll.php | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/include/items.php b/include/items.php index 58fad99272..1dd39d2ba9 100644 --- a/include/items.php +++ b/include/items.php @@ -901,7 +901,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { * */ -function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0) { +function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_feed = false) { require_once('simplepie/simplepie.inc'); diff --git a/include/poller.php b/include/poller.php index 8619697d96..3b80c1c04b 100644 --- a/include/poller.php +++ b/include/poller.php @@ -278,7 +278,8 @@ function poller_run($argv, $argc){ continue; } - consume_feed($xml,$importer,$contact,$hub,1); + + consume_feed($xml,$importer,$contact,$hub,1, true); // do it twice. Ensures that children of parents which may be later in the stream aren't tossed diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index 25b28c63ce..4b25efe418 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -446,6 +446,8 @@ function dfrn_poll_content(&$a) { )); } + $profile = $r[0]['nickname']; + switch($destination_url) { case 'profile': $dest = $a->get_baseurl() . '/profile/' . $profile . '?tab=profile'; @@ -487,7 +489,6 @@ function dfrn_poll_content(&$a) { dbesc($session_id) ); } - $profile = $r[0]['nickname']; goaway($dest); }