summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/finishaddopenid.php3
-rw-r--r--actions/openidsettings.php2
2 files changed, 3 insertions, 2 deletions
diff --git a/actions/finishaddopenid.php b/actions/finishaddopenid.php
index 4f167e9ef..f2965f0e4 100644
--- a/actions/finishaddopenid.php
+++ b/actions/finishaddopenid.php
@@ -69,9 +69,10 @@ class FinishaddopenidAction extends Action {
$this->message(_t('This OpenID is already associated with user "') . $other->nickname . _t('"'));
} else {
$cur =& common_current_user();
+ common_debug('cur = ' .print_r($cur, TRUE), __FILE__);
$result = oid_link_user($cur->id, $display, $canonical);
if (!$result) {
- $this->message(_t('Error connecting user'));
+ $this->message(_t('Error connecting user.'));
return;
}
if ($sreg) {
diff --git a/actions/openidsettings.php b/actions/openidsettings.php
index 0737f2148..742ef2757 100644
--- a/actions/openidsettings.php
+++ b/actions/openidsettings.php
@@ -65,7 +65,7 @@ class OpenidsettingsAction extends SettingsAction {
common_element('h2', NULL, _t('OpenID'));
common_element('p', NULL,
- _t('You can remove an OpenID from your account ',
+ _t('You can remove an OpenID from your account '.
'by clicking the button marked "Delete" next to it.'));
$idx = 0;