Forward port graceful handling of the deletion of the Auth LDAPLink.
This commit is contained in:
parent
fa04344b7d
commit
5381f3038d
6 changed files with 111 additions and 70 deletions
|
|
@ -385,9 +385,11 @@ sub www_editUser {
|
|||
-value=>$u->authMethod,
|
||||
);
|
||||
foreach (@{$session->config->get("authMethods")}) {
|
||||
$tabform->getTab("account")->fieldSetStart($_);
|
||||
my $authInstance = WebGUI::Operation::Auth::getInstance($session,$_,$u->userId);
|
||||
$tabform->getTab("account")->raw($authInstance->editUserForm);
|
||||
my $editUserForm = $authInstance->editUserForm;
|
||||
next unless $editUserForm;
|
||||
$tabform->getTab("account")->fieldSetStart($_);
|
||||
$tabform->getTab("account")->raw($editUserForm);
|
||||
$tabform->getTab("account")->fieldSetEnd;
|
||||
}
|
||||
foreach my $category (@{WebGUI::ProfileCategory->getCategories($session)}) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue