True, "nonavbar" => True); $phpgw_info["flags"]["currentapp"] = "admin"; $phpgw_info["flags"]["disable_message_class"] = True; $phpgw_info["flags"]["disable_send_class"] = True; include("../header.inc.php"); include($phpgw_info["server"]["server_root"] . "/admin/inc/accounts_" . $phpgw_info["server"]["auth_type"] . ".inc.php"); if (! $account_id) { Header("Location: " . $phpgw->link("accounts.php")); } if ($submit) { if ($old_loginid != $n_loginid) { if (account_exsists($n_loginid)) { $error .= "
" . lang("That loginid has already been taken"); } $c_loginid = $n_loginid; $n_loginid = $old_loginid; } if ($n_passwd || $n_passwd_2) { if ($n_passwd != $n_passwd_2) { $error .= lang("The two passwords are not the same"); } if (! $n_passwd){ $error .= lang("You must enter a password"); } } if (count($new_permissions) == 0){ $error .= "
" . lang("You must add at least 1 permission to this account"); } if (! $error) { $cd = account_edit(array("loginid" => $n_loginid, "permissions" => $new_permissions, "firstname" => $n_firstname, "lastname" => $n_lastname, "passwd" => $n_passwd, "account_status" => $account_status, "c_loginid" => $c_loginid, "groups" => $phpgw->accounts->groups_array_to_string($n_groups))); } Header("Location: " . $phpgw->link("accounts.php", "cd=$cd")); exit; } // if $submit $phpgw->common->phpgw_header(); $phpgw->common->navbar(); $phpgw->db->query("select account_lid from accounts where account_id=$account_id"); $phpgw->db->next_record(); $db_perms = $phpgw->accounts->read_apps($phpgw->db->f("account_lid")); $phpgw->db->query("select * from accounts where account_id=$account_id"); $phpgw->db->next_record(); $account_status = $phpgw->db->f("account_status"); ?>
"> "> " . lang("Error") . ":$error"; } ?>
' . '"; $i++; if (! $perm_display[$i][1]) break; echo '' . '"; $i++; } ?>
">
">
">
' . lang($perm_display[$i][1]) . '' . lang($perm_display[$i][1]) . '
>
">
common->phpgw_footer(); ?>