From: Graham B. <gb...@us...> - 2003-05-06 16:58:25
|
Update of /cvsroot/perl-ldap/ldap/lib/Net In directory sc8-pr-cvs1:/tmp/cvs-serv10912/lib/Net Modified Files: LDAP.pod Log Message: Fix method names in examples Index: LDAP.pod =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP.pod,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- LDAP.pod 6 May 2003 15:47:37 -0000 1.21 +++ LDAP.pod 6 May 2003 16:58:22 -0000 1.22 @@ -524,9 +524,9 @@ my $schema = $ldap->schema(); # get objectClasses - @ocs = $schema->objectclasses(); + @ocs = $schema->all_objectclasses(); # Get the attributes - @atts = $schema->attributes(); + @atts = $schema->all_attributes(); =item search ( OPTIONS ) |