diff options
author | Marco Ceppi <marco@ceppi.net> | 2013-05-21 12:17:05 -0700 |
---|---|---|
committer | Marco Ceppi <marco@ceppi.net> | 2013-05-21 12:17:05 -0700 |
commit | ed87a679d5ef18178b0f0c0c41f9e391e21267ac (patch) | |
tree | fdb56a89195f7a7d5cbbdb170251cd35b00326df /Auth/OpenID/SQLStore.php | |
parent | a9fafd0025be51fd2852745315a3cacd68323fe3 (diff) | |
parent | 930d6b67dda6a8b1f6dd1fcb687d550795c7cc15 (diff) | |
download | php-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.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); } /** |