summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/Pod-Html/lib/Pod/Html.pm4
-rw-r--r--pod/perldelta.pod4
2 files changed, 6 insertions, 2 deletions
diff --git a/ext/Pod-Html/lib/Pod/Html.pm b/ext/Pod-Html/lib/Pod/Html.pm
index 5ae242b96f..444174274a 100644
--- a/ext/Pod-Html/lib/Pod/Html.pm
+++ b/ext/Pod-Html/lib/Pod/Html.pm
@@ -3,7 +3,7 @@ use strict;
require Exporter;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
-$VERSION = 1.12;
+$VERSION = 1.13;
@ISA = qw(Exporter);
@EXPORT = qw(pod2html htmlify);
@EXPORT_OK = qw(anchorify);
@@ -571,7 +571,7 @@ sub resolve_pod_page_link {
# as a substitute (e.g., $Podpath/Pod/Simple/XHTML)
my @matches;
foreach my $modname (keys %{$self->pages}) {
- push @matches, $modname if $modname =~ /::$to\z/;
+ push @matches, $modname if $modname =~ /::\Q$to\E\z/;
}
if ($#matches == -1) {
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index ab3c862b57..6c06b88cd1 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -202,6 +202,10 @@ L<perlfaq> has been upgraded from version 5.0150036 to version 5.0150037.
=item *
+L<Pod::Html> has been upgraded from version 1.12 to 1.13
+
+=item *
+
L<POSIX> has been upgraded from version 1.27 to version 1.29.
C<sigsuspend> and C<pause> now run signals handle before returning, as the