Author: chabotc
Date: Tue Dec 9 08:49:47 2008
New Revision: 724776
URL: http://svn.apache.org/viewvc?rev=724776&view=rev
Log:
SHINDIG-763 by Erik Gomersbach - fixes isAnonymous check for OAuthSecurityToken
Modified:
incubator/shindig/trunk/php/src/social/oauth/OAuthSecurityToken.php
Modified: incubator/shindig/trunk/php/src/social/oauth/OAuthSecurityToken.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/social/oauth/OAuthSecurityToken.php?rev=724776&r1=724775&r2=724776&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/social/oauth/OAuthSecurityToken.php
(original)
+++ incubator/shindig/trunk/php/src/social/oauth/OAuthSecurityToken.php Tue Dec
9 08:49:47 2008
@@ -35,7 +35,7 @@
}
public function isAnonymous() {
- return ($this->userId != null);
+ return ($this->userId == null);
}
public function getOwnerId() {