Author: chabotc
Date: Wed Nov 19 01:51:21 2008
New Revision: 718922
URL: http://svn.apache.org/viewvc?rev=718922&view=rev
Log:
SHINDIG-697 by impetus technologies - Class OAuthFetcher missed the recently
added multi fetch function
Modified:
incubator/shindig/trunk/php/src/gadgets/oauth/OAuthFetcher.php
Modified: incubator/shindig/trunk/php/src/gadgets/oauth/OAuthFetcher.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/oauth/OAuthFetcher.php?rev=718922&r1=718921&r2=718922&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/gadgets/oauth/OAuthFetcher.php (original)
+++ incubator/shindig/trunk/php/src/gadgets/oauth/OAuthFetcher.php Wed Nov 19
01:51:21 2008
@@ -137,8 +137,8 @@
if ($origClientState != null && strlen($origClientState) > 0) {
try {
$this->origClientState =
$this->oauthCrypter->unwrap($origClientState, self::$CLIENT_STATE_MAX_AGE_SECS);
- } catch (BlobCrypterException $e) { // Probably too
old, pretend we never saw it at all.
- }
+ } catch (BlobCrypterException $e) {// Probably too old,
pretend we never saw it at all.
+}
}
if ($this->origClientState == null) {
$this->origClientState = array();
@@ -614,4 +614,9 @@
$this->responseMetadata[self::$ERROR_TEXT] =
$this->errorText;
}
}
-}
\ No newline at end of file
+
+ public function multiFetchRequest(Array $requests)
+ {
+ // Do nothing
+ }
+}