X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/e4896c39b96b7ff311d61a36cf9128ebb305a24b..d26c95718cac0a2994ab4e9633b59f420a0816b4:/password_change.php diff --git a/password_change.php b/password_change.php index a44a505e..8e565212 100644 --- a/password_change.php +++ b/password_change.php @@ -72,15 +72,14 @@ if ($request->getMethod() == 'POST') { $errors->add($i18n->getKey('error.not_equal'), $i18n->getKey('label.password'), $i18n->getKey('label.confirm_password')); if ($errors->isEmpty()) { - // Use the "limit" plugin if we have one. Ignore include errors. + // Use the "limit" plugin if we have one. Ignore include errors. // The "limit" plugin is not required for normal operation of Time Tracker. $cl_login = $user->login; // $cl_login is used in access_check.cpp. @include('plugins/limit/access_check.php'); - - ttUserHelper::setPassword($user_id, $cl_password1); - if ($auth->doLogin($user->login, $cl_password1)) { + ttUserHelper::setPassword($user_id, $cl_password1); + if ($auth->doLogin($user->login, $cl_password1)) { setcookie('tt_login', $user->login, time() + COOKIE_EXPIRE, '/'); header('Location: time.php'); exit();