summaryrefslogtreecommitdiff
path: root/actions/userauthorization.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-04 16:11:23 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-04 16:11:23 -0400
commit593f1e5e2c23c771b1cc9ba8c352639f1ec96a48 (patch)
tree196ed26f3cf329f96d81c378274fb966bcabdeb2 /actions/userauthorization.php
parent9d670d25f8bbab226f8ae6be48a8126f989f82b9 (diff)
add some debugging code
darcs-hash:20080604201123-84dde-ff9ec8530474e194eee5e6fcc6190f7cd6fc5b5c.gz
Diffstat (limited to 'actions/userauthorization.php')
-rw-r--r--actions/userauthorization.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/actions/userauthorization.php b/actions/userauthorization.php
index a23b830b9..29a0c9d6a 100644
--- a/actions/userauthorization.php
+++ b/actions/userauthorization.php
@@ -36,10 +36,12 @@ class UserauthorizationAction extends Action {
$req = $this->get_stored_request();
if (!$req) {
# this must be a new request
+ common_debug('userauthorization.php - getting new request');
$req = $this->get_new_request();
if (!$req) {
common_server_error(_t('No request found!'));
}
+ common_debug('userauthorization.php - validating request');
# XXX: only validate new requests, since nonce is one-time use
$this->validate_request($req);
}
@@ -50,11 +52,15 @@ class UserauthorizationAction extends Action {
}
if (common_logged_in()) {
+ common_debug('userauthorization.php - showing form');
$this->show_form($req);
} else {
+ common_debug('userauthorization.php - storing request in session');
# Go log in, and then come back
$this->store_request($req);
+ common_debug('userauthorization.php - saving URL for returnto');
common_set_returnto(common_local_url('userauthorization'));
+ common_debug('userauthorization.php - redirecting to login');
common_redirect(common_local_url('login'));
}
}