From 5473560df4dd0c8c7872b576318ced4e7458b49c Mon Sep 17 00:00:00 2001 From: JT Smith Date: Sun, 15 Jan 2006 18:18:58 +0000 Subject: [PATCH] another session related bug fix --- lib/WebGUI/Auth/LDAP.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Auth/LDAP.pm b/lib/WebGUI/Auth/LDAP.pm index b9b1727a5..3de203071 100644 --- a/lib/WebGUI/Auth/LDAP.pm +++ b/lib/WebGUI/Auth/LDAP.pm @@ -222,7 +222,7 @@ sub createAccount { value=>[$connection->{ldapLinkId}], extras=>qq|onchange="location.href='$url'+this.options[this.selectedIndex].value"| }); - $vars->{'create.form.ldapId'} = WebGUI::Form::text($self->session,{"name"=>"authLDAP_ldapId","value"=>$self->session->form->process("authLDAP_ldapId"})); + $vars->{'create.form.ldapId'} = WebGUI::Form::text($self->session,{"name"=>"authLDAP_ldapId","value"=>$self->session->form->process("authLDAP_ldapId")}); $vars->{'create.form.ldapId.label'} = $connection->{ldapIdentityName}; $vars->{'create.form.password'} = WebGUI::Form::password($self->session,{"name"=>"authLDAP_identifier","value"=>$self->session->form->process("authLDAP_identifier")}); $vars->{'create.form.password.label'} = $connection->{ldapPasswordName};