gladiopeace / opensocial-php-client

Automatically exported from code.google.com/p/opensocial-php-client
Apache License 2.0
0 stars 0 forks source link

Typo in new osapiOAuth3Legged_10a class #54

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
In the new osapiOAuth3Legged_10a the class name in lines 77 and 80 has not
been changed to "osapiOAuth3Legged_10a" but is still "osapiOAuth3Legged".
Fixed code would be i.e.:

   * @return osapiOAuth3Legged_10a the logged-in provider instance
   */
  public static function performOAuthLogin($consumerKey, $consumerSecret,
osapiStorage $storage, osapiProvider $provider, $localUserId = null,
$userId = null) {
    $auth = new osapiOAuth3Legged_10a($consumerKey, $consumerSecret,
$storage, $provider, $localUserId, $userId);

Original issue reported on code.google.com by bashofm...@gmail.com on 24 Aug 2009 at 3:31