diff options
author | tailor <cygnus@janrain.com> | 2006-09-25 16:37:45 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-09-25 16:37:45 +0000 |
commit | 4068d16feb028e27ae782f9a9defcf5264b7e02d (patch) | |
tree | cf38004c7b889668da255f170fa74659f459c60f /Auth/OpenID/SQLStore.php | |
parent | 70e573286a122323c9807ec42c6a5902d2655cc2 (diff) | |
download | php-openid-4068d16feb028e27ae782f9a9defcf5264b7e02d.zip php-openid-4068d16feb028e27ae782f9a9defcf5264b7e02d.tar.gz php-openid-4068d16feb028e27ae782f9a9defcf5264b7e02d.tar.bz2 |
[project @ FIX: Silence error output when PEAR DB absent]
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 1cd6c68..c7bd540 100644 --- a/Auth/OpenID/SQLStore.php +++ b/Auth/OpenID/SQLStore.php @@ -21,7 +21,7 @@ * its own storage. */ global $__Auth_OpenID_PEAR_AVAILABLE; -$__Auth_OpenID_PEAR_AVAILABLE = include_once 'DB.php'; +$__Auth_OpenID_PEAR_AVAILABLE = @include_once 'DB.php'; /** * @access private |