summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID/SQLStore.php
diff options
context:
space:
mode:
Diffstat (limited to 'Auth/OpenID/SQLStore.php')
-rw-r--r--Auth/OpenID/SQLStore.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/Auth/OpenID/SQLStore.php b/Auth/OpenID/SQLStore.php
index a9f5b82..45a1c16 100644
--- a/Auth/OpenID/SQLStore.php
+++ b/Auth/OpenID/SQLStore.php
@@ -445,8 +445,9 @@ class Auth_OpenID_SQLStore extends Auth_OpenID_OpenIDStore {
*/
function _get_assocs($server_url)
{
- return $this->connection->getAll($this->sql['get_assocs'],
- array($server_url));
+ return $this->isError(
+ $this->connection->getAll($this->sql['get_assocs'],
+ array($server_url)));
}
function removeAssociation($server_url, $handle)