True, "nonavbar" => True, "currentapp" => "admin"); include("../header.inc.php"); include($phpgw_info["server"]["server_root"] . "/admin/inc/accounts_" . $phpgw_info["server"]["account_repository"] . ".inc.php"); if (! $account_id) { Header("Location: " . $phpgw->link("accounts.php")); } if ($submit) { $totalerrors = 0; if ($phpgw_info["server"]["account_repository"] == "ldap" && ! $allow_long_loginids) { if (strlen($n_loginid) > 8) { $error[$totalerrors++] = lang("The loginid can not be more then 8 characters"); } } if ($old_loginid != $n_loginid) { if (account_exsists($n_loginid)) { $error[$totalerrors++] = 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[$totalerrors++] = lang("The two passwords are not the same"); } if (! $n_passwd){ $error[$totalerrors++] = lang("You must enter a password"); } } if (count($new_permissions) == 0){ $error[$totalerrors++] = "
" . lang("You must add at least 1 permission to this account"); } if (! $totalerrors) { $cd = account_edit(array("loginid" => $n_loginid, "permissions" => $new_permissions, "firstname" => $n_firstname, "lastname" => $n_lastname, "passwd" => $n_passwd, "account_status" => $n_account_status, "old_loginid" => $old_loginid, "account_id" => rawurldecode($account_id), "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(); $userData = $phpgw->accounts->read_userData($account_id); $db_perms = $phpgw->accounts->read_apps($userData["account_lid"]); ?>
"> "> "> " . $phpgw->common->error_list($error) . ""; } ?>
' . '"; $i++; if (! $perm_display[$i][1]) break; echo '' . '"; $i++; } ?>
">
">
">
' . lang($perm_display[$i][1]) . '' . lang($perm_display[$i][1]) . '
>
">
common->phpgw_footer(); ?>