From: Joey Hess <joey@gnu.kitenet.net>
Date: Tue, 29 Sep 2009 17:33:23 +0000 (-0400)
Subject: typo
X-Git-Tag: 3.20091009~93
X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/1f929e7f6404dc260ebd7818c83ca87e52da6c41

typo
---

diff --git a/IkiWiki/Plugin/parentlinks.pm b/IkiWiki/Plugin/parentlinks.pm
index b01d76f80..e678a057d 100644
--- a/IkiWiki/Plugin/parentlinks.pm
+++ b/IkiWiki/Plugin/parentlinks.pm
@@ -57,7 +57,7 @@ sub pagetemplate (@) {
 
 	if ($template->query(name => "parentlinks") ||
  	   $template->query(name => "has_parentlinks")) {
-		my @links=[parentlinks($page)];
+		my @links=parentlinks($page);
 		$template->param(parentlinks => \@links);
 		$template->param(has_parentlinks => (@links > 0));
 	}