import v1.1.0_RC2 | 2009-09-20
This commit is contained in:
@ -351,10 +351,14 @@ class Auth_Yadis_XRDS {
|
||||
|
||||
$services = $this->parser->evalXPath('xrd:Service', $this->xrdNode);
|
||||
|
||||
/*
|
||||
* Keyboard Monkeys modification:
|
||||
* Assigning the return value of new by reference is deprecated
|
||||
*/
|
||||
foreach ($services as $node) {
|
||||
$s =& new Auth_Yadis_Service();
|
||||
$s = new Auth_Yadis_Service();
|
||||
$s->element = $node;
|
||||
$s->parser =& $this->parser;
|
||||
$s->parser = $this->parser;
|
||||
|
||||
$priority = $s->getPriority();
|
||||
|
||||
@ -475,4 +479,4 @@ class Auth_Yadis_XRDS {
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
Reference in New Issue
Block a user