X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=admin_options.php;h=ae901d6d3a6439e45957e5e3fb4faea4bddaaa77;hb=ad98b13400fdc2fa2299a22c9bd54c4cd27960c3;hp=5431b22aa2324fbd995516e3d5a7c74f1011f8a9;hpb=806dde3c7931d1a0d13c4f0469013a79e6198dcc;p=timetracker.git diff --git a/admin_options.php b/admin_options.php index 5431b22a..ae901d6d 100644 --- a/admin_options.php +++ b/admin_options.php @@ -54,8 +54,8 @@ $form = new Form('optionsForm'); $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','value'=>$cl_name)); $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'login','value'=>$cl_login)); if (!$auth->isPasswordExternal()) { - $form->addInput(array('type'=>'text','maxlength'=>'30','name'=>'password1','aspassword'=>true,'value'=>$cl_password1)); - $form->addInput(array('type'=>'text','maxlength'=>'30','name'=>'password2','aspassword'=>true,'value'=>$cl_password2)); + $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'password1','value'=>$cl_password1)); + $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'password2','value'=>$cl_password2)); } $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','value'=>$cl_email)); $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.submit')));