more session related changes
This commit is contained in:
parent
16b9675b0c
commit
024514c549
106 changed files with 1498 additions and 1313 deletions
|
|
@ -137,7 +137,7 @@ Returns a hash reference containing all ldap links. The format is:
|
|||
sub getList {
|
||||
my %list;
|
||||
tie %list, "Tie::IxHash";
|
||||
%list = WebGUI::SQL->buildHash("select ldapLinkId, ldapLinkName from ldapLink order by ldapLinkName");
|
||||
%list = $self->session->db->buildHash("select ldapLinkId, ldapLinkName from ldapLink order by ldapLinkName");
|
||||
return \%list;
|
||||
}
|
||||
|
||||
|
|
@ -156,7 +156,7 @@ A valid ldapLinkId
|
|||
sub get {
|
||||
my %hash;
|
||||
tie %hash, 'Tie::CPHash';
|
||||
%hash = WebGUI::SQL->quickHash("select * from ldapLink where ldapLinkId=".quote($_[0]));
|
||||
%hash = $self->session->db->quickHash("select * from ldapLink where ldapLinkId=".$self->session->db->quote($_[0]));
|
||||
return \%hash;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue