]> wagnertech.de Git - timetracker.git/blobdiff - password_change.php
Fixed a redirect for different user roles after password change.
[timetracker.git] / password_change.php
index 0c51280035ee21697b75d4aa21cf9a56754bc84d..62cc962d77015a1a5a3abb49aefb01d6ed1ae44e 100644 (file)
@@ -81,13 +81,22 @@ 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'));
     }
   }
-} // POST
+} // isPost
 
 $smarty->assign('forms', array($form->getName() => $form->toArray()));
 $smarty->assign('title', $i18n->getKey('title.change_password'));