From 98437f21f9402d5a6c3569a0c558b13881d77848 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Jun 2008 14:21:53 -0400 Subject: [PATCH] make a nodes variable to pass nodes by reference darcs-hash:20080602182153-84dde-4e5ac1c02e8e7a408d251ffa0aa2bbff190d1631.gz --- actions/remotesubscribe.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;