summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID/SQLStore.php
diff options
context:
space:
mode:
authorLuke Shepard <lshepard@devrs006.snc1.facebook.com>2009-05-28 07:08:30 +0800
committerWill Norris <will@willnorris.com>2009-05-28 13:01:42 +0800
commitd90728f6b8c63ee2d8957bf47d09c76802cf743c (patch)
tree02306114d09d508282469ea316992001d0031bb2 /Auth/OpenID/SQLStore.php
parent164375f493ea7de083ee64d25137b276f45ef172 (diff)
downloadphp-openid-d90728f6b8c63ee2d8957bf47d09c76802cf743c.zip
php-openid-d90728f6b8c63ee2d8957bf47d09c76802cf743c.tar.gz
php-openid-d90728f6b8c63ee2d8957bf47d09c76802cf743c.tar.bz2
[ few random cleanup changes ]
A few minor changes made over the past few months. This adds some additional logging, an extra helper function for error messages, and fixes a small bug with the association handler ... not to mention standardizing on "false" instead of "False". Signed-off-by: Will Norris <will@willnorris.com>
Diffstat (limited to 'Auth/OpenID/SQLStore.php')
-rw-r--r--Auth/OpenID/SQLStore.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/SQLStore.php b/Auth/OpenID/SQLStore.php
index abd81bf..5c75e70 100644
--- a/Auth/OpenID/SQLStore.php
+++ b/Auth/OpenID/SQLStore.php
@@ -482,7 +482,7 @@ class Auth_OpenID_SQLStore extends Auth_OpenID_OpenIDStore {
global $Auth_OpenID_SKEW;
if ( abs($timestamp - time()) > $Auth_OpenID_SKEW ) {
- return False;
+ return false;
}
return $this->_add_nonce($server_url, $timestamp, $salt);