diff options
Diffstat (limited to 'MDK/Common.pm.pl')
-rw-r--r-- | MDK/Common.pm.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MDK/Common.pm.pl b/MDK/Common.pm.pl index ea3cbe6..55218e3 100644 --- a/MDK/Common.pm.pl +++ b/MDK/Common.pm.pl @@ -69,12 +69,12 @@ use MDK::Common::String qw(:all); use MDK::Common::System qw(:all); use MDK::Common::Various qw(:all); -use vars qw(@ISA @EXPORT $VERSION); #); -@ISA = qw(Exporter); +use Exporter; +our @ISA = qw(Exporter); # perl_checker: RE-EXPORT-ALL -@EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; +our @EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; -$VERSION = "1.1.22"; +our $VERSION = "1.1.23"; 1; EOF |