mirror of
https://github.com/friendica/friendica
synced 2024-11-19 02:23:41 +00:00
$contact isn't called by reference anymore
This commit is contained in:
parent
7db0b850cb
commit
d98c6819e7
2 changed files with 6 additions and 9 deletions
|
@ -228,7 +228,7 @@ function add_page_info_to_body($body, $texturl = false, $no_photos = false) {
|
||||||
*
|
*
|
||||||
* @TODO find proper type-hints
|
* @TODO find proper type-hints
|
||||||
*/
|
*/
|
||||||
function consume_feed($xml, $importer, &$contact, &$hub, $datedir = 0, $pass = 0) {
|
function consume_feed($xml, $importer, $contact, &$hub, $datedir = 0, $pass = 0) {
|
||||||
if ($contact['network'] === NETWORK_OSTATUS) {
|
if ($contact['network'] === NETWORK_OSTATUS) {
|
||||||
if ($pass < 2) {
|
if ($pass < 2) {
|
||||||
// Test - remove before flight
|
// Test - remove before flight
|
||||||
|
|
|
@ -582,15 +582,12 @@ class OnePoll
|
||||||
|
|
||||||
logger("Consume feed of contact ".$contact['id']);
|
logger("Consume feed of contact ".$contact['id']);
|
||||||
|
|
||||||
// Use a copy of the contact to avoid problems.
|
consume_feed($xml, $importer, $contact, $hub);
|
||||||
// The contact parameter is called by reference.
|
|
||||||
$contact2 = $contact;
|
|
||||||
consume_feed($xml, $importer, $contact2, $hub, 1, 1);
|
|
||||||
|
|
||||||
// do it twice. Ensures that children of parents which may be later in the stream aren't tossed
|
// do it a second time for DFRN so that any children find their parents.
|
||||||
|
if ($contact['network'] === NETWORK_DFRN) {
|
||||||
$contact2 = $contact;
|
consume_feed($xml, $importer, $contact, $hub);
|
||||||
consume_feed($xml, $importer, $contact2, $hub, 1, 2);
|
}
|
||||||
|
|
||||||
$hubmode = 'subscribe';
|
$hubmode = 'subscribe';
|
||||||
if ($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly']) {
|
if ($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly']) {
|
||||||
|
|
Loading…
Reference in a new issue