X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/806dde3c7931d1a0d13c4f0469013a79e6198dcc..98907514962d51214461614c73087dc9f0f6c2f7:/password_change.php diff --git a/password_change.php b/password_change.php index f07b8b61..62cc962d 100644 --- a/password_change.php +++ b/password_change.php @@ -81,7 +81,16 @@ if ($request->isPost()) { if ($auth->doLogin($user->login, $cl_password1)) { setcookie('tt_login', $user->login, time() + COOKIE_EXPIRE, '/'); - header('Location: time.php'); + // Redirect, depending on user role. + if ($user->isAdmin()) { + header('Location: admin_teams.php'); + } + else if ($user->isClient()) { + header('Location: reports.php'); + } + else { + header('Location: time.php'); + } exit(); } else { $err->add($i18n->getKey('error.auth'));