diff options
-rw-r--r-- | IkiWiki/Plugin/meta.pm | 4 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm index 421f1dc86..7ea70b5d1 100644 --- a/IkiWiki/Plugin/meta.pm +++ b/IkiWiki/Plugin/meta.pm @@ -107,12 +107,12 @@ sub preprocess (@) { # fallthrough } elsif ($key eq 'license') { - push @{$metaheaders{$page}}, '<link rel="license" href="#page_license" />'; + push @{$metaheaders{$page}}, '<link rel="license" href="#pagelicense" />'; $pagestate{$page}{meta}{license}=$value; return ""; } elsif ($key eq 'copyright') { - push @{$metaheaders{$page}}, '<link rel="copyright" href="#page_copyright" />'; + push @{$metaheaders{$page}}, '<link rel="copyright" href="#pagecopyright" />'; $pagestate{$page}{meta}{copyright}=$value; return ""; } diff --git a/debian/changelog b/debian/changelog index c88f3a427..91e465cd8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,8 @@ ikiwiki (3.20130213) UNRELEASED; urgency=low generate invalid html. (smcv) * Makefile.PL: overwrite theme style.css instead of appending (Thanks, Mikko Rapeli) + * meta: Fix anchors used to link to the page's license and copyright. + Closes: #706437 -- Joey Hess <joeyh@debian.org> Fri, 15 Feb 2013 17:23:12 -0400 |