summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2007-05-22 19:31:22 +0000
committertailor <cygnus@janrain.com>2007-05-22 19:31:22 +0000
commit3523706f395c807e5b7eba4f32b7eda1050a45b7 (patch)
tree4641723505c6a29dd0305a8fd4117cd9b6854237
parent041098b68991cbe619ad0b20a9841a9f6e0ef136 (diff)
downloadphp-openid-3523706f395c807e5b7eba4f32b7eda1050a45b7.zip
php-openid-3523706f395c807e5b7eba4f32b7eda1050a45b7.tar.gz
php-openid-3523706f395c807e5b7eba4f32b7eda1050a45b7.tar.bz2
[project @ Relax requirement of parse_str implementation]
-rw-r--r--Auth/OpenID.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID.php b/Auth/OpenID.php
index 88124cf..551dee6 100644
--- a/Auth/OpenID.php
+++ b/Auth/OpenID.php
@@ -243,7 +243,7 @@ class Auth_OpenID {
$pair = explode('=', $parts[$i]);
if (count($pair) != 2) {
- return null;
+ continue;
}
list($key, $value) = $pair;