summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID/SQLStore.php
diff options
context:
space:
mode:
authorDavid Simon <dsimon@americancouncils.org>2013-05-21 15:03:46 -0400
committerDavid Simon <dsimon@americancouncils.org>2013-05-21 15:03:46 -0400
commit930d6b67dda6a8b1f6dd1fcb687d550795c7cc15 (patch)
treefdb56a89195f7a7d5cbbdb170251cd35b00326df /Auth/OpenID/SQLStore.php
parenta9fafd0025be51fd2852745315a3cacd68323fe3 (diff)
downloadphp-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.php2
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);
}
/**