diff options
-rwxr-xr-x | podwrapper.pl.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/podwrapper.pl.in b/podwrapper.pl.in index 29cd8076..ac08ec8c 100755 --- a/podwrapper.pl.in +++ b/podwrapper.pl.in @@ -255,8 +255,9 @@ SUBCLASS: { # Subclass Pod::Simple::XHTML. See the documentation. package Podwrapper::XHTML; - use vars qw(@ISA); + use vars qw(@ISA $VERSION); @ISA = qw(Pod::Simple::XHTML); + $VERSION = $package_version; # Pod::Simple::XHTML returns uppercase identifiers, whereas the # old pod2html returns lowercase ones. |