diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-10-30 01:30:42 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-10-30 01:30:42 -0400 |
commit | 02131db1c976831241b61e205ccda9e3232c4fe2 (patch) | |
tree | b7a7231c5b936cec169a8658abf253e99a857633 /extlib/Auth/Yadis/XML.php | |
parent | 005f85b5eaace14a1303eb51fb216e6d77696244 (diff) |
Bump to Auth_OpenID 2.1.3
Diffstat (limited to 'extlib/Auth/Yadis/XML.php')
-rw-r--r-- | extlib/Auth/Yadis/XML.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extlib/Auth/Yadis/XML.php b/extlib/Auth/Yadis/XML.php index 7232d6cbd..81b2ce221 100644 --- a/extlib/Auth/Yadis/XML.php +++ b/extlib/Auth/Yadis/XML.php @@ -91,7 +91,7 @@ class Auth_Yadis_XMLParser { * @return array $node_list An array of matching opaque node * objects to be used with other methods of this parser class. */ - function evalXPath($xpath, $node = null) + function &evalXPath($xpath, $node = null) { // Not implemented. } @@ -349,7 +349,7 @@ function &Auth_Yadis_getXMLParser() foreach ($extensions as $name => $params) { if (!extension_loaded($name)) { foreach ($params['libname'] as $libname) { - if (function_exists('dl') && ini_get('enable_dl') && !ini_get('safe_mode') && @dl($libname)) { + if (@dl($libname)) { $classname = $params['classname']; } } |