diff options
author | David Simon <dsimon@americancouncils.org> | 2013-05-21 15:03:46 -0400 |
---|---|---|
committer | David Simon <dsimon@americancouncils.org> | 2013-05-21 15:03:46 -0400 |
commit | 930d6b67dda6a8b1f6dd1fcb687d550795c7cc15 (patch) | |
tree | fdb56a89195f7a7d5cbbdb170251cd35b00326df /Auth/OpenID/SQLStore.php | |
parent | a9fafd0025be51fd2852745315a3cacd68323fe3 (diff) | |
download | php-openid-930d6b67dda6a8b1f6dd1fcb687d550795c7cc15.zip php-openid-930d6b67dda6a8b1f6dd1fcb687d550795c7cc15.tar.gz php-openid-930d6b67dda6a8b1f6dd1fcb687d550795c7cc15.tar.bz2 |
Prevent errors in strict mode due to weird PEAR static method declarations
Diffstat (limited to 'Auth/OpenID/SQLStore.php')
-rw-r--r-- | Auth/OpenID/SQLStore.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/SQLStore.php b/Auth/OpenID/SQLStore.php index c040597..2dc731a 100644 --- a/Auth/OpenID/SQLStore.php +++ b/Auth/OpenID/SQLStore.php @@ -166,7 +166,7 @@ class Auth_OpenID_SQLStore extends Auth_OpenID_OpenIDStore { */ function isError($value) { - return PEAR::isError($value); + return @PEAR::isError($value); } /** |