Changes to LDAPLink to remove dual references to LDAP settings

This commit is contained in:
Frank Dillon 2005-05-04 20:21:45 +00:00
parent c3be54e071
commit c7322cb6ba

View file

@ -133,7 +133,7 @@ Returns a hash reference containing all ldap links. The format is:
sub getList {
my %list;
tie %list, "Tie::IxHash";
%list = ('0'=>WebGUI::International::get("ldap link"),WebGUI::SQL->buildHash("select ldapLinkId, ldapLinkName from ldapLink order by ldapLinkName"));
%list = WebGUI::SQL->buildHash("select ldapLinkId, ldapLinkName from ldapLink order by ldapLinkName");
return \%list;
}