isAnonymous check for OAuthSecurityToken doesn't look right
-----------------------------------------------------------

                 Key: SHINDIG-763
                 URL: https://issues.apache.org/jira/browse/SHINDIG-763
             Project: Shindig
          Issue Type: Bug
          Components: Gadget Rendering Server (PHP)
            Reporter: Erik Gomersbach
         Attachments: patch.txt

Currently the method reads as follows:

  public function isAnonymous() {
    return ($this->userId != null);
  }

Shouldn't it be:

  public function isAnonymous() {
    return ($this->userId == null);
  }

?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to