mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
user admin page was broken for ldap
This commit is contained in:
parent
5b4c78d22b
commit
84a5c8773d
@ -72,7 +72,15 @@
|
||||
|
||||
?>
|
||||
<form method="POST" action="<?php echo $phpgw->link("editaccount.php"); ?>">
|
||||
<input type="hidden" name="account_id" value="<? echo rawurlencode($userData["account_id"]); ?>">
|
||||
<input type="hidden" name="account_id" value="<?
|
||||
if ($phpgw_info["server"]["auth_type"] == "ldap")
|
||||
{
|
||||
echo rawurlencode($userData["account_dn"]);
|
||||
}
|
||||
else
|
||||
{
|
||||
echo $userData["account_id"];
|
||||
}?>">
|
||||
<input type="hidden" name="old_loginid" value="<? echo $userData["account_lid"]; ?>">
|
||||
<?php
|
||||
if ($error) {
|
||||
|
Loading…
Reference in New Issue
Block a user