summaryrefslogtreecommitdiff
path: root/lib/oauthstore.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/oauthstore.php')
-rw-r--r--lib/oauthstore.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/oauthstore.php b/lib/oauthstore.php
index 688c7477a..ee644a7f7 100644
--- a/lib/oauthstore.php
+++ b/lib/oauthstore.php
@@ -67,12 +67,13 @@ class LaconicaOAuthDataStore extends OAuthDataStore {
}
function new_request_token($consumer) {
+ common_debug('new_request_token("'.$consumer->consumer_key.'")', __FILE__);
$t = new Token();
$t->consumer_key = $consumer->consumer_key;
$t->tok = common_good_rand(16);
$t->secret = common_good_rand(16);
$t->type = 0; # request
- $t->state = 0;
+ $t->state = 0; # unauthorized
$t->created = DB_DataObject_Cast::dateTime();
if (!$t->insert()) {
return NULL;