diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/ldap.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/URI/ldap.pm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/ldap.pm b/Master/tlpkg/tlperl/lib/URI/ldap.pm index 378a9421440..b2cf9777511 100644 --- a/Master/tlpkg/tlperl/lib/URI/ldap.pm +++ b/Master/tlpkg/tlperl/lib/URI/ldap.pm @@ -5,13 +5,11 @@ package URI::ldap; use strict; +use warnings; -use vars qw(@ISA $VERSION); -$VERSION = "1.12"; +our $VERSION = "1.67"; -require URI::_server; -require URI::_ldap; -@ISA=qw(URI::_ldap URI::_server); +use parent qw(URI::_ldap URI::_server); sub default_port { 389 } |