X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=password_change.php;h=f07b8b61620e748ce0741fe12dc40692918abb4a;hb=7fafd0cdc53c376b557a5504af53dacdfbcdb533;hp=84e8f6aeb3edf111080a464267bf5a60af0cf1ec;hpb=a7ba11adfecf6cb906749efe5abce688363aef07;p=timetracker.git diff --git a/password_change.php b/password_change.php index 84e8f6ae..f07b8b61 100644 --- a/password_change.php +++ b/password_change.php @@ -66,12 +66,12 @@ $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->getKey if ($request->isPost()) { // Validate user input. - if (!ttValidString($cl_password1)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.password')); - if (!ttValidString($cl_password2)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.confirm_password')); + if (!ttValidString($cl_password1)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.password')); + if (!ttValidString($cl_password2)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.confirm_password')); if ($cl_password1 !== $cl_password2) - $errors->add($i18n->getKey('error.not_equal'), $i18n->getKey('label.password'), $i18n->getKey('label.confirm_password')); + $err->add($i18n->getKey('error.not_equal'), $i18n->getKey('label.password'), $i18n->getKey('label.confirm_password')); - if ($errors->no()) { + if ($err->no()) { // 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. @@ -84,10 +84,10 @@ if ($request->isPost()) { header('Location: time.php'); exit(); } else { - $errors->add($i18n->getKey('error.auth')); + $err->add($i18n->getKey('error.auth')); } } -} // POST +} // isPost $smarty->assign('forms', array($form->getName() => $form->toArray())); $smarty->assign('title', $i18n->getKey('title.change_password'));