From: Evan Prodromou Date: Mon, 2 Jun 2008 18:21:53 +0000 (-0400) Subject: make a nodes variable to pass nodes by reference X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=98437f21f9402d5a6c3569a0c558b13881d77848;p=quix0rs-gnu-social.git make a nodes variable to pass nodes by reference darcs-hash:20080602182153-84dde-4e5ac1c02e8e7a408d251ffa0aa2bbff190d1631.gz --- diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index b64655bbea..4594bb37ec 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -211,7 +211,9 @@ class RemotesubscribeAction extends Action { $attrs = $parser->attributes($node); if (array_key_exists('xml:id', $attrs) && $attrs['xml:id'] == $id) { - return new Auth_Yadis_XRDS($parser, array($node)); + # XXX: trick the constructor into thinking this is the only node + $bogus_nodes = array($node); + return new Auth_Yadis_XRDS($parser, $bogus_nodes); } } return NULL;