From 6c09c3e646a2b01a4069942e35070bc6a016b371 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 30 Apr 2013 13:35:04 -0400 Subject: [PATCH] meta: Fix anchors used to link to the page's license and copyright. Closes: #706437 --- IkiWiki/Plugin/meta.pm | 4 ++-- 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}}, ''; + push @{$metaheaders{$page}}, ''; $pagestate{$page}{meta}{license}=$value; return ""; } elsif ($key eq 'copyright') { - push @{$metaheaders{$page}}, ''; + push @{$metaheaders{$page}}, ''; $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 Fri, 15 Feb 2013 17:23:12 -0400 -- 2.32.0.93.g670b81a890