]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/requesttoken.php
replace all tabs with four spaces
[quix0rs-gnu-social.git] / actions / requesttoken.php
index 76019a92995126db827b7394ed55bf3588235166..4950d93c06addede2a77b54e636d45fa33a133a1 100644 (file)
@@ -22,21 +22,21 @@ if (!defined('LACONICA')) { exit(1); }
 require_once(INSTALLDIR.'/lib/omb.php');
 
 class RequesttokenAction extends Action {
-       
-       function is_readonly() {
-               return false;
-       }
-       
-       function handle($args) {
-               parent::handle($args);
-               try {
-                       common_remove_magic_from_request();
-                       $req = OAuthRequest::from_request();
-                       $server = omb_oauth_server();
-                       $token = $server->fetch_request_token($req);
-                       print $token;
-               } catch (OAuthException $e) {
-                       common_server_error($e->getMessage());
-               }
-       }
+    
+    function is_readonly() {
+        return false;
+    }
+    
+    function handle($args) {
+        parent::handle($args);
+        try {
+            common_remove_magic_from_request();
+            $req = OAuthRequest::from_request();
+            $server = omb_oauth_server();
+            $token = $server->fetch_request_token($req);
+            print $token;
+        } catch (OAuthException $e) {
+            common_server_error($e->getMessage());
+        }
+    }
 }