more debugging output, better check on canonical

darcs-hash:20080618162715-84dde-9a3213796a88cf4f28597553e1834896c7f201a7.gz
This commit is contained in:
Evan Prodromou 2008-06-18 12:27:15 -04:00
parent 0475763c3c
commit 71aadefc3e

View File

@ -49,8 +49,8 @@ class FinishaddopenidAction extends Action {
// identity URL and Simple Registration data (if it was
// returned).
$display = $response->getDisplayIdentifier();
$canonical = ($response->endpoint->canonicalID) ?
$response->endpoint->canonicalID : $response->getDisplayIdentifier();
$canonical = ($response->endpoint && $response->endpoint->canonicalID) ?
$response->endpoint->canonicalID : $display;
$sreg_resp = Auth_OpenID_SRegResponse::fromSuccessResponse($response);
@ -58,6 +58,7 @@ class FinishaddopenidAction extends Action {
$sreg = $sreg_resp->contents();
}
common_debug(print_r($response, TRUE), __FILE__);
common_debug(print_r($sreg, TRUE), __FILE__);
common_debug(print_r($display, TRUE), __FILE__);
common_debug(print_r($canonical, TRUE), __FILE__);