summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID/SQLStore.php
diff options
context:
space:
mode:
authorMarco Ceppi <marco@ceppi.net>2013-05-21 12:17:05 -0700
committerMarco Ceppi <marco@ceppi.net>2013-05-21 12:17:05 -0700
commited87a679d5ef18178b0f0c0c41f9e391e21267ac (patch)
treefdb56a89195f7a7d5cbbdb170251cd35b00326df /Auth/OpenID/SQLStore.php
parenta9fafd0025be51fd2852745315a3cacd68323fe3 (diff)
parent930d6b67dda6a8b1f6dd1fcb687d550795c7cc15 (diff)
downloadphp-openid-ed87a679d5ef18178b0f0c0c41f9e391e21267ac.zip
php-openid-ed87a679d5ef18178b0f0c0c41f9e391e21267ac.tar.gz
php-openid-ed87a679d5ef18178b0f0c0c41f9e391e21267ac.tar.bz2
Merge pull request #99 from DavidMikeSimon/master
PEAR and strict mode issues
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);
}
/**