]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Use 7 digits for oob OAuth pin instead of 6
authorZach Copley <zach@status.net>
Thu, 7 Oct 2010 18:01:17 +0000 (11:01 -0700)
committerZach Copley <zach@status.net>
Thu, 7 Oct 2010 18:01:17 +0000 (11:01 -0700)
lib/apioauthstore.php

index 4d141286bf03dbc0548a6953493bba02a97ee168..7a4fe8db5217b25f191a567717014b0f75693a41 100644 (file)
@@ -205,7 +205,7 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore
 
         if ($callback === 'oob') {
             // six digit pin
-            $t->verifier = mt_rand(0, 999999);
+            $t->verifier = mt_rand(0, 9999999);
         } else {
             $t->verifier = common_good_rand(8);
         }