diff options
-rw-r--r-- | Auth/OpenID/KVForm.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/KVForm.php b/Auth/OpenID/KVForm.php index f021035..d918d88 100644 --- a/Auth/OpenID/KVForm.php +++ b/Auth/OpenID/KVForm.php @@ -110,7 +110,7 @@ class Auth_OpenID_KVForm { $serialized = ''; foreach ($values as $key => $value) { if (is_array($value)) { - list($key, $value) = $value; + list($key, $value) = array($value[0], $value[1]); } if (strpos($key, ':') !== false) { |