diff options
author | Marco Ceppi <marco@ceppi.net> | 2014-01-23 06:17:01 -0500 |
---|---|---|
committer | Marco Ceppi <marco@ceppi.net> | 2014-01-23 06:17:01 -0500 |
commit | 8e0678e85ef925095446909b33abd253b0a6f9c6 (patch) | |
tree | 98fd974441e2154faac20f74daaaf058173ffb39 /Auth | |
parent | 62f17268670c0859e7946a31303a06a0aa23ee67 (diff) | |
download | php-openid-8e0678e85ef925095446909b33abd253b0a6f9c6.zip php-openid-8e0678e85ef925095446909b33abd253b0a6f9c6.tar.gz php-openid-8e0678e85ef925095446909b33abd253b0a6f9c6.tar.bz2 |
Clean up
Diffstat (limited to 'Auth')
-rw-r--r-- | Auth/Yadis/XML.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Auth/Yadis/XML.php b/Auth/Yadis/XML.php index 39a9942..0f8aaec 100644 --- a/Auth/Yadis/XML.php +++ b/Auth/Yadis/XML.php @@ -343,11 +343,11 @@ function Auth_Yadis_getSupportedExtensions() function Auth_Yadis_getXMLParser() { global $__Auth_Yadis_defaultParser; - + if (isset($__Auth_Yadis_defaultParser)) { return $__Auth_Yadis_defaultParser; } - + foreach(Auth_Yadis_getSupportedExtensions() as $extension => $classname) { if (extension_loaded($extension)) @@ -357,7 +357,7 @@ function Auth_Yadis_getXMLParser() return $p; } } - + return false; } |