diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/sip.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/URI/sip.pm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/sip.pm b/Master/tlpkg/tlperl/lib/URI/sip.pm index 97bf8630a3d..cee4ea1b953 100644 --- a/Master/tlpkg/tlperl/lib/URI/sip.pm +++ b/Master/tlpkg/tlperl/lib/URI/sip.pm @@ -7,15 +7,14 @@ package URI::sip; -require URI::_server; -require URI::_userpass; -@ISA=qw(URI::_server URI::_userpass); - use strict; -use vars qw(@ISA $VERSION); +use warnings; + +use parent qw(URI::_server URI::_userpass); + use URI::Escape qw(uri_unescape); -$VERSION = "0.11"; +our $VERSION = "1.67"; sub default_port { 5060 } |