check results of setting current user
darcs-hash:20080517193030-84dde-ecd85676afd34bd9eb4b42b84bb3b6a6b9ea6a9e.gz
This commit is contained in:
parent
30089235e0
commit
6b308f0d1a
|
@ -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)));
|
||||
|
|
|
@ -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.'));
|
||||
|
|
Loading…
Reference in New Issue
Block a user