X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fchange_current_user_password.php;h=247517a24b86dbf0ff327f10d91238a3fa7d846d;hb=69fde1eed360af911850c868e86fb2f63700195b;hp=f2b270c8138a38dc0241f501be4d6b69e7587364;hpb=e5536a0814ee5ce77c9cccfd4ec74a0ebd1973d0;p=fa-stable.git diff --git a/admin/change_current_user_password.php b/admin/change_current_user_password.php index f2b270c8..247517a2 100644 --- a/admin/change_current_user_password.php +++ b/admin/change_current_user_password.php @@ -9,11 +9,11 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security=1; +$page_security = 'SA_CHGPASSWD'; $path_to_root=".."; include_once($path_to_root . "/includes/session.inc"); -page(_("Change password")); +page(_($help_context = "Change password")); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); @@ -66,7 +66,7 @@ if (isset($_POST['UPDATE_ITEM'])) start_form(); -start_table($table_style); +start_table(TABLESTYLE); $myrow = get_user($_SESSION["wa_current_user"]->user); @@ -75,15 +75,8 @@ label_row(_("User login:"), $myrow['user_id']); $_POST['password'] = ""; $_POST['passwordConfirm'] = ""; -start_row(); -label_cell(_("Password:")); -label_cell(""); -end_row(); - -start_row(); -label_cell(_("Repeat password:")); -label_cell(""); -end_row(); +password_row(_("Password:"), 'password', $_POST['password']); +password_row(_("Repeat password:"), 'passwordConfirm', $_POST['passwordConfirm']); table_section_title(_("Enter your new password in the fields."));