diff options
Diffstat (limited to 'app/Controller/UserModificationController.php')
-rw-r--r-- | app/Controller/UserModificationController.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Controller/UserModificationController.php b/app/Controller/UserModificationController.php index d339fd9a..ed145921 100644 --- a/app/Controller/UserModificationController.php +++ b/app/Controller/UserModificationController.php @@ -57,13 +57,13 @@ class UserModificationController extends BaseController if ($valid) { if ($this->userModel->update($values)) { $this->flash->success(t('User updated successfully.')); + $this->response->redirect($this->helper->url->to('UserViewController', 'show', array('user_id' => $user['id'])), true); + return; } else { - $this->flash->failure(t('Unable to update your user.')); + $this->flash->failure(t('Unable to update this user.')); } - - return $this->response->redirect($this->helper->url->to('UserViewController', 'show', array('user_id' => $user['id']))); } - return $this->show($values, $errors); + $this->show($values, $errors); } } |