You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/05/30 15:51:31 UTC

svn commit: r661721 - /incubator/shindig/trunk/php/src/gadgets/oauth/OAuthStore.php

Author: chabotc
Date: Fri May 30 06:51:31 2008
New Revision: 661721

URL: http://svn.apache.org/viewvc?rev=661721&view=rev
Log:
SHINDIG-312 fixes typo in constructor

Modified:
    incubator/shindig/trunk/php/src/gadgets/oauth/OAuthStore.php

Modified: incubator/shindig/trunk/php/src/gadgets/oauth/OAuthStore.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/oauth/OAuthStore.php?rev=661721&r1=661720&r2=661721&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/gadgets/oauth/OAuthStore.php (original)
+++ incubator/shindig/trunk/php/src/gadgets/oauth/OAuthStore.php Fri May 30 06:51:31 2008
@@ -336,7 +336,7 @@
 	private $accessToken;
 	private $tokenSecret;
 
-	public function __constructor($token, $secret)
+	public function __construct($token, $secret)
 	{
 		$this->accessToken = $token;
 		$this->tokenSecret = $secret;