From c7322cb6badb48429a8e2c01f244c903e6a27fe9 Mon Sep 17 00:00:00 2001 From: Frank Dillon Date: Wed, 4 May 2005 20:21:45 +0000 Subject: [PATCH] Changes to LDAPLink to remove dual references to LDAP settings --- lib/WebGUI/LDAPLink.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/LDAPLink.pm b/lib/WebGUI/LDAPLink.pm index a02655635..60a2d4d64 100644 --- a/lib/WebGUI/LDAPLink.pm +++ b/lib/WebGUI/LDAPLink.pm @@ -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; }