Subject: | [PATCH] Missing links in WWW::Mechanize |
WWW::Mechanize does not include the
<head>
<title>Test next</title>
<link rel="next" type="text/html" href="next.html" />
</head>
type links in the ->links () method
--8<--- patch.diff
--- lib/WWW/Mechanize.pm.org 2008-08-04 12:16:15.000000000 +0200
+++ lib/WWW/Mechanize.pm 2008-08-04 12:16:09.000000000 +0200
@@ -2291,6 +2291,7 @@ my %link_tags = (
frame => 'src',
iframe => 'src',
meta => 'content',
+ link => 'href',
);
sub _extract_links {
-->8---