X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/d26c95718cac0a2994ab4e9633b59f420a0816b4..a7ba11adfecf6cb906749efe5abce688363aef07:/password_reset.php diff --git a/password_reset.php b/password_reset.php index de0a02c1..d67372c5 100644 --- a/password_reset.php +++ b/password_reset.php @@ -40,7 +40,7 @@ $form = new Form('resetPasswordForm'); $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'login','style'=>'width: 300px;')); $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.reset_password'))); -if ($request->getMethod() == 'POST') { +if ($request->isPost()) { $cl_login = $request->getParameter('login'); // Validate user input. @@ -110,7 +110,7 @@ if ($request->getMethod() == 'POST') { $smarty->assign('result_message', $res ? $i18n->getKey('form.reset_password.message') : $i18n->getKey('error.mail_send')); } } -} +} // POST $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('onload', 'onLoad="document.resetPasswordForm.login.focus()"');