check results of setting current user

darcs-hash:20080517193030-84dde-ecd85676afd34bd9eb4b42b84bb3b6a6b9ea6a9e.gz
This commit is contained in:
Evan Prodromou 2008-05-17 15:30:30 -04:00
parent 30089235e0
commit 6b308f0d1a
2 changed files with 11 additions and 2 deletions

View File

@ -38,7 +38,12 @@ class LoginAction extends Action {
$nickname = $this->arg('nickname');
$password = $this->arg('password');
if (common_check_user($nickname, $password)) {
common_set_user($nickname);
# success!
if (!common_set_user($nickname)) {
common_server_error(_t('Error setting user.'));
return;
}
# success!
common_redirect(common_local_url('all',
array('nickname' =>
$nickname)));

View File

@ -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.'));