X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fusers.php;h=fbb42a678c2228ce5b3f3237ea1128095f3c78f5;hb=630e99edecc3eabe708a9e7bda94eaa60bf16db7;hp=d51426d71614421484974f88fc6631feb63b6343;hpb=17b390efcf904072b02ec866b2a427490471a260;p=fa-stable.git diff --git a/admin/users.php b/admin/users.php index d51426d7..fbb42a67 100644 --- a/admin/users.php +++ b/admin/users.php @@ -23,7 +23,7 @@ include_once($path_to_root . "/admin/db/users_db.inc"); simple_page_mode(true); //------------------------------------------------------------------------------------------------- -function can_process() +function can_process($new) { if (strlen($_POST['user_id']) < 4) @@ -33,7 +33,7 @@ function can_process() return false; } - if ($_POST['password'] != "") + if (!$new && ($_POST['password'] != "")) { if (strlen($_POST['password']) < 4) { @@ -58,7 +58,7 @@ function can_process() if (($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') && check_csrf_token()) { - if (can_process()) + if (can_process($Mode == 'ADD_ITEM')) { if ($selected_id != -1) { @@ -133,7 +133,9 @@ while ($myrow = db_fetch($result)) alt_table_row_color($k); - $last_visit_date = sql2date($myrow["last_visit_date"]); + $time_format = (user_date_format() == 0 ? "h:i a" : "H:i"); + $last_visit_date = sql2date($myrow["last_visit_date"]). " " . + date($time_format, strtotime($myrow["last_visit_date"])); /*The security_headings array is defined in config.php */ $not_me = strcasecmp($myrow["user_id"], $_SESSION["wa_current_user"]->username);