From: Evan Prodromou <evan@prodromou.name>
Date: Mon, 2 Jun 2008 20:31:42 +0000 (-0400)
Subject: debugging code for userauthorization
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8d943248517edf692f95f983752dea11e12d4a4b;p=quix0rs-gnu-social.git

debugging code for userauthorization

darcs-hash:20080602203142-84dde-6f68b40061d0af776d077be1b24b8adf84ee331b.gz
---

diff --git a/actions/userauthorization.php b/actions/userauthorization.php
index ee156bd79e..617830e9a6 100644
--- a/actions/userauthorization.php
+++ b/actions/userauthorization.php
@@ -28,10 +28,16 @@ class UserauthorizationAction extends Action {
 		} else {
 			try {
 				$req = $this->get_request();
+				if (!$req) {
+					common_server_error(_t('Cannot find request'));
+				}
+				common_debug('userauthorization.php - $req = "'.print_r($req,TRUE).'"');
 				$server = common_oauth_server();
 				$server->get_version($req);
 				$consumer = $server->get_consumer($req);
+				common_debug('userauthorization.php - $consumer = "'.print_r($consumer,TRUE).'"');
 				$token = $server->get_token($req, $consumer, "request");
+				common_debug('userauthorization.php - $token = "'.print_r($token,TRUE).'"');
 				$server->check_signature($req, $consumer, $token);
 			} catch (OAuthException $e) {
 				$this->clear_request();