X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fchange_current_user_password.php;h=4ed37fb012d1f55c2a13e4e1225179a2263a014b;hb=78fe8cb8f56510ba3f6a1720b207a33b5828e071;hp=bb7c9cb0736be78c9dbc2f3de0c19d289657de54;hpb=d2cc0860eccf02eaefcd90731ac3af141a841529;p=fa-stable.git diff --git a/admin/change_current_user_password.php b/admin/change_current_user_password.php index bb7c9cb0..4ed37fb0 100644 --- a/admin/change_current_user_password.php +++ b/admin/change_current_user_password.php @@ -47,7 +47,7 @@ function can_process() return true; } -if (isset($_POST['UPDATE_ITEM'])) +if (isset($_POST['UPDATE_ITEM']) && check_csrf_token()) { if (can_process()) @@ -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."));