diff options
author | tailor <cygnus@janrain.com> | 2006-03-01 19:01:01 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-03-01 19:01:01 +0000 |
commit | 41d79b4c0144775599abdaddd29736862b686c44 (patch) | |
tree | a5f3a3531d477993c610e502a3a7a3b66f44e08f | |
parent | 43f15c4918da70e6aa72a0a93b912e732b985416 (diff) | |
download | php-openid-41d79b4c0144775599abdaddd29736862b686c44.zip php-openid-41d79b4c0144775599abdaddd29736862b686c44.tar.gz php-openid-41d79b4c0144775599abdaddd29736862b686c44.tar.bz2 |
[project @ Fixed parser to lowercase uppercased HTML attributes]
-rw-r--r-- | Auth/OpenID/Parse.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/Parse.php b/Auth/OpenID/Parse.php index 48b1c31..670f15a 100644 --- a/Auth/OpenID/Parse.php +++ b/Auth/OpenID/Parse.php @@ -225,7 +225,7 @@ class Auth_OpenID_Parse { $value = $this->replaceEntities( $this->removeQuotes($attr_matches[2][$index])); - $link_attrs[$name] = $value; + $link_attrs[strtolower($name)] = $value; } $link_data[] = $link_attrs; } |