diff options
Diffstat (limited to 'actions/register.php')
-rw-r--r-- | actions/register.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php index 29a7a70f7..096eded79 100644 --- a/actions/register.php +++ b/actions/register.php @@ -51,7 +51,11 @@ class RegisterAction extends Action { } else if ($password != $confirm) { $this->show_form(_t('Passwords don\'t match.')); } else if ($this->register_user($nickname, $password, $email)) { - common_set_user($nickname); + # success! + if (!common_set_user($nickname)) { + common_server_error(_t('Error setting user.')); + return; + } common_redirect(common_local_url('profilesettings')); } else { $this->show_form(_t('Invalid username or password.')); |