X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=password_change.php;h=89e79c7ff3197ea2fd88a216bf71a42ebe9df113;hb=dc00748e76b054fb1163f7a3835b686a752fbf8a;hp=62cc962d77015a1a5a3abb49aefb01d6ed1ae44e;hpb=98907514962d51214461614c73087dc9f0f6c2f7;p=timetracker.git diff --git a/password_change.php b/password_change.php index 62cc962d..89e79c7f 100644 --- a/password_change.php +++ b/password_change.php @@ -59,8 +59,8 @@ $cl_password1 = $request->getParameter('password1'); $cl_password2 = $request->getParameter('password2'); $form = new Form('newPasswordForm'); -$form->addInput(array('type'=>'text','maxlength'=>'120','name'=>'password1','aspassword'=>true,'value'=>$cl_password1)); -$form->addInput(array('type'=>'text','maxlength'=>'120','name'=>'password2','aspassword'=>true,'value'=>$cl_password2)); +$form->addInput(array('type'=>'password','maxlength'=>'120','name'=>'password1','value'=>$cl_password1)); +$form->addInput(array('type'=>'password','maxlength'=>'120','name'=>'password2','value'=>$cl_password2)); $form->addInput(array('type'=>'hidden','name'=>'ref','value'=>$cl_ref)); $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->getKey('button.save'))); @@ -84,11 +84,9 @@ if ($request->isPost()) { // Redirect, depending on user role. if ($user->isAdmin()) { header('Location: admin_teams.php'); - } - else if ($user->isClient()) { + } elseif ($user->isClient()) { header('Location: reports.php'); - } - else { + } else { header('Location: time.php'); } exit();