diff options
-rw-r--r-- | actions/remotesubscribe.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index b64655bbe..4594bb37e 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; |