diff options
author | Josh Hoyt <josh@janrain.com> | 2006-02-11 00:44:59 +0000 |
---|---|---|
committer | Josh Hoyt <josh@janrain.com> | 2006-02-11 00:44:59 +0000 |
commit | 10a098814a18773c233c4aef91ae838e8532aab4 (patch) | |
tree | 16afcbae9a27718125572b6da55fa79875ddcb8a | |
parent | 46a8bd3bf538230b704285f44ac31cd0fd7aa73c (diff) | |
download | php-openid-10a098814a18773c233c4aef91ae838e8532aab4.zip php-openid-10a098814a18773c233c4aef91ae838e8532aab4.tar.gz php-openid-10a098814a18773c233c4aef91ae838e8532aab4.tar.bz2 |
[project @ Fix bug from incomplete Python porting]
-rw-r--r-- | Auth/OpenID/Server.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/Server.php b/Auth/OpenID/Server.php index 24462c6..e6a367b 100644 --- a/Auth/OpenID/Server.php +++ b/Auth/OpenID/Server.php @@ -342,7 +342,7 @@ class Auth_OpenID_Server { $assoc = $this->createAssociation($assoc_type); if (!isset($assoc)) { $fmt = 'unable to create an association for type %s'; - return self.postError(sprinft($fmt, $assoc_type)); + return $this->postError(sprinft($fmt, $assoc_type)); } $this->store->storeAssociation($this->_normal_key, $assoc); |