diff options
author | tailor <cygnus@janrain.com> | 2006-01-04 17:25:54 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-01-04 17:25:54 +0000 |
commit | b43fe59d26c2c19408bd470b239921f7f1d4700c (patch) | |
tree | addfcae784cf1253956e3fd1bc61be8aaa2ccc3b | |
parent | 1da38d8b41a476dbb6955aa80a383354323747f3 (diff) | |
download | php-openid-b43fe59d26c2c19408bd470b239921f7f1d4700c.zip php-openid-b43fe59d26c2c19408bd470b239921f7f1d4700c.tar.gz php-openid-b43fe59d26c2c19408bd470b239921f7f1d4700c.tar.bz2 |
[project @ Fixed $key / $value bug]
-rw-r--r-- | Net/OpenID/KVForm.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Net/OpenID/KVForm.php b/Net/OpenID/KVForm.php index 799f862..d2c9f96 100644 --- a/Net/OpenID/KVForm.php +++ b/Net/OpenID/KVForm.php @@ -43,7 +43,7 @@ class Net_OpenID_KVForm { } if (strpos($value, "\n") !== FALSE) { - trigger_error('"\n" in value:' . addslashes($key), + trigger_error('"\n" in value:' . addslashes($value), E_USER_WARNING); return NULL; } |