summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-09-13 00:01:23 -0400
committerCraig Andrews <candrews@integralblue.com>2009-09-13 00:01:23 -0400
commit940ea07d4a72becfbdcb434e7043937618c45a61 (patch)
tree41db446a211d80fd76ab6b43bbb594e59cbe9a26 /actions
parent29d937d04ef1d5bf83493a16e90dc4b9b7b5a059 (diff)
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 :'-(
Diffstat (limited to 'actions')
-rw-r--r--actions/requesttoken.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/requesttoken.php b/actions/requesttoken.php
index 48fe1db08..a17efcdd5 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());
}