From: Craig Andrews Date: Sun, 13 Sep 2009 04:01:23 +0000 (-0400) Subject: Response for request token doesn't contain omb_version X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=940ea07d4a72becfbdcb434e7043937618c45a61;p=quix0rs-gnu-social.git Response for request token doesn't contain omb_version Fixes http://status.net/trac/ticket/681 Sorry it took a year to accept this patch, dho :'-( --- diff --git a/actions/requesttoken.php b/actions/requesttoken.php index 48fe1db08f..a17efcdd50 100644 --- a/actions/requesttoken.php +++ b/actions/requesttoken.php @@ -72,7 +72,7 @@ class RequesttokenAction extends Action $req = OAuthRequest::from_request('POST', common_local_url('requesttoken')); $server = omb_oauth_server(); $token = $server->fetch_request_token($req); - print $token; + print $token.'&omb_version='.OMB_VERSION_01; } catch (OAuthException $e) { $this->serverError($e->getMessage()); }