fetch the oid before showing it

darcs-hash:20080619153719-5ed1f-da58c447643d24dbfd9d0076c74d8ce4f57c5be3.gz
This commit is contained in:
Evan Prodromou 2008-06-19 11:37:19 -04:00
parent fa90195c4d
commit c030c8dbd2

View File

@ -81,10 +81,13 @@ class OpenidsettingsAction extends SettingsAction {
common_element('p', NULL,
_t('Removing your only OpenID would make it impossible to log in! ' .
'If you need to remove it, add another OpenID first.'));
common_element_start('p');
common_element('a', array('href' => $oid->canonical),
$oid->display);
common_element_end('p');
if ($oid->fetch()) {
common_element_start('p');
common_element('a', array('href' => $oid->canonical),
$oid->display);
common_element_end('p');
}
} else {